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;