354 ISO Programming
4.30 Data Input and Data Output
PRINT—Output of # variables
PRINT can be used to output texts and variable values during program
run. You can program a succession of several texts and variables.
Syntax:
PRINT(text,variable, text,variable, ..)
Example:
PRINT("result: ",#l1,"*17 = ",#l2)