Send data to the output stream during compilation
#stdout <message>
The #stdout directive sends output to the standard output during compilation followed by a CRLF.
If this output will be shown or not in the IDE that you are using depends on the settings of this IDE.
// example of #stdout
// The example demonstrates the use of #stdout
FUNCTION Start AS VOID
#ifndef DEBUG // output at compile time
#stdout Compiling a debug version of the program
#endif
? "Hello world"
RETURN