SAY

Purpose

Read syntax diagramSkip visual syntax diagram>>-SAY--+------------+--;--------------------------------------><
        '-expression-'
 

SAY writes a line to the default output stream (the terminal) so the user sees it displayed. The result of expression may be of any length. If you omit expression, the null string is written.

You can use the SET TERMOUT command to redirect SAY output.

Example:
data=100
Say data 'divided by 4 =>' data/4
/* Displays: "100 divided by 4 => 25"  */