You can use break
to break out of a while
loop:
a = 2 while (a += 1) < 20 if a == 10 # goes to 'puts a' break end end puts a #=> 10
To the extent possible under law, the persons who contributed to this workhave waived
all copyright and related or neighboring rights to this workby associating CC0 with it.
https://crystal-lang.org/docs/syntax_and_semantics/break.html