From TeleFlow
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Prints string's content to the output.
Syntax
- PRINT(string)
- string: a string value or variable.
Related Steps
BasicScript
Examples
BasicScript code
| Result
|
@A = "Hello world"
| Hello world
|
PRINT "@A"
| Hello again
|
PRINT "Hello again"
|
|