Range Ruby

for i in 1..5 do
  print i, " "
end
# => 1 2 3 4 5