❮ Range
❯
- ..
- ...
Range using dots
examples/range/exclusive_dots.cr
(1...3).each { |this| puts this }
examples/range/inclusive_dots.cr
(1..3).each { |this| puts this }
(1...3).each { |this| puts this }
(1..3).each { |this| puts this }