cfdocs

systemOutput

Writes the given object to the output stream

systemOutput(obj [, addNewLine] [, doErrorStream])
returns boolean

Argument Reference

Name Type Required Default Description
obj any Yes    
addNewLine boolean No    
doErrorStream boolean No    

Write a string to the output stream “Hello World”

systemOutput("Hello World");

Write an array to the output stream

systemOutput([ "foo", "bar" ]);

Write a struct to the output stream

systemOutput({ "myKey", "myValue" });