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 println

Descrption

Print a string to standard output. A newline is automatically sent to standard output.

Example

const string WELCOME_MESSAGE = "Welcome!";

# A newline is automatically inserted after this message.
println WELCOME_MESSAGE;

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

# A newline is automatically inserted after this message.
println token1, " is a ", token2;