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 print

Descrption

Print a string to standard out.

Example

const string WELCOME_MESSAGE = "Welcome!";

print WELCOME_MESSAGE;

string token1 = "This";
string token2 = "test print.";

print token1, " is a ", token2, "\n";