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

Comments

Lines starting with the character ‘#’ are comments.

Example

# Function "compare". Sets int variable "result" to 1 if leftValue equals rightValue. Otherwise, sets "result" to 0.
function compare : int as leftValue, int as rightValue -> result;
    if leftValue == rightValue;
        result = 1;
    else;
        result = 0;
return;