up previous next
StandardOutput    --    an OSTREAM for writing to the standard output


Syntax
StandardOutput(): OSTREAM

Description
This function returns an OSTREAM for printing on the standard output (usually this is the computer screen).

This function may not work well if you are running CoCoA inside a GUI.

Example
/**/  UserOutput := StandardOutput();
/**/  println "Hello" on UserOutput;  -- same as println "Hello";

See Also