Loops VI

(1..3).each do |i|
  break if i == 2
  puts i
end
(1..4).step(2) do |i|
  puts i * 2
end
i = 0
while i < 3
  puts i
  i += 1
end