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 if

Description

Declare an if statement.

Example

string myName = "John Doe";
string yourName = "Jane Doe";

if myName != yourName;
    println "We have different names!";
end;