Print a message with line break to the console
Method Signature
Print(message=[any])Arguments
Argument
Type
Required
Description
Default
message
any
true
The message to print
Examples
Print output without a newline
print( "Hello" );
print( " " );
print( "World" );
println( "" );
writeOutput( "done" );
Result: done
Related
Last updated
Was this helpful?
