SystemOutput
Last updated
Was this helpful?
Writes the given object to the output stream
SystemOutput(obj=[any], addNewLine=[boolean], doErrorStream=[boolean])obj
any
true
The object to write to the output stream
addNewLine
boolean
true
If true, a new line will be added to the output stream
false
doErrorStream
boolean
false
If true, the object will be written to the error stream
false
systemOutput( "Hello World" );
Last updated
Was this helpful?
Was this helpful?
systemOutput( [
"foo",
"bar"
] );
systemOutput({ "myKey", "myValue" });