SysLib.writeStdOut function

SysLib.writeStdOut writes a string to the standard output destination.

Package

eglx.lang

Syntax
static function writeStdOut(text string in);
text
The text to write.
Example use

Here is example code:

SysLib.writeStdOut("Opened file");
Comments

sysLib.writeStdOut is typically for debugging.

Compatibility

Table 1. Compatibility
Target Issue
Java The output goes to the System.err output stream of the Java Virtual Machine (JVM).

The default is to route the output to the console, but when you start the JVM, you can route the output to a different location.

JavaScript No issues.