Range and loop controls



examples/range/loop_controls.cr
(1..10).each { |ix|
  next if ix % 2 == 0
  break if ix == 7
  puts ix
}

1
3
5