Labels
Both continue
and break
can optionally take a label argument which is used to break out of nested loops:
Speaker Notes
- Note that
loop
is the only looping construct which returns a non-trivial value. This is because it's guaranteed to be entered at least once (unlikewhile
andfor
loops).