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 end

Descrption

Define the end of a code block for if statements, else statements, while statments, and try-block statements.

Example

int left = 9;
int right = 18;

if left > right;
    println "Left is greater than right.";
else; if left == right;
    println "Left is equal to right.";
else;
    println "Right is greater than left.";
end;