Show/Hide Toolbars

XSharp

Purpose

Send data to the output stream during compilation

Syntax

#stdout <message>

Description

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

// 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