SysLib.writeStdOut writes a string to the standard output destination.
eglx.lang
static function writeStdOut(text string in);
Here is example code:
SysLib.writeStdOut("Opened file");
sysLib.writeStdOut is typically for debugging.
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. |