println

Synopsis

println([$handle], "text")

prints "text" to the specified handle (with a newline appended)

Parameters

$handle - the handle to write to (defaults to stdin/stdout)

"text" - the text to write

Examples

println("Hello World");

Hello World

See Also