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;