For the complete documentation index, see llms.txt. This page is also available as Markdown.

Println

Print a message with line break to the console

Method Signature

Println(message=[any])

Arguments

Argument
Type
Required
Description
Default

message

any

false

The message to print

Examples

println( "Hello, World!" );
writeOutput( "done" );

Result: done

Last updated

Was this helpful?