weeks1to2/Example/for in
2017-08-14 11:34:33 +10:00

5 lines
56 B
Text

arr = [1, 2, 3]
for a in arr
puts "element #{a}"
end