Writes data to a stream that text editors can sometimes read.
ConsoleWrite ( "data" )
Parameters
data | The data you wish to output. |
Return Value
None.
Remarks
The purpose for this function is to write to a console which many popular text editors can read.
Related
None.
Example
$var = "Test"
ConsoleWrite("var=" & $var)
; Running this in a text editor which can trap console output should produce "var=Test"