Home
Press ? for keyboard navigation
❮
Range - count
Range with step
❯
next
break
continue
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
Index (i)
Table of Contents (t)
Indexed keywords (k)
Chapter TOC (d)
Hide/Show (h)