$ECHO (output stdconsol)
$ECHO outputs a message to the Command Prompt.
Syntax
$ECHO(message)
Values
-
message
Specifies a message, either as a constant or a variable. A constant must be enclosed in single quotation marks ('').
Example
The following examples output the message Hello world:
[SET_VALUE]
$ECHO('Hello world')
[SET_VALUE]
MSG = 'Hello world'
$ECHO(MSG)- Execution result:
-
Hello world
Hello world