View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword break

Description

Stops execution of the enclosing loop.

Example

# Infinite loop
while 1 == 1;
    println "Infinite loop...";
    # Stop infinite while loop
    break; 
end;