break
You can use break
to break out of a while
loop:
a = 2
while (a += 1) < 20
if a == 10
break # goes to 'puts a'
end
end
puts a # => 10
break
can also take an argument which will then be the value that gets returned:
def foo
loop do
break "bar"
end
end
puts foo # => "bar"
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/reference/syntax_and_semantics/break.html