Output Functions

Format the object to a string representation and send the result to the standard output.

echo(object) : object
print(object) : object

Format the object to a string representation and send the result to the standard output and append "\n" character.

println(object) : object

Examples

Print a value of a variable.

a = 5;
println(a);
echo(a);
print(a);
5
55