Range with step



examples/range/step.cr
(1..10).step(3) { |ix|
  puts ix
}

1
4
7
10