Home Keywords
Stops execution of the enclosing loop.
# Infinite loop while 1 == 1; println "Infinite loop..."; # Stop infinite while loop break; end;