;
PRINT -- Displays the values of one or more expressions or variables. P is
the legal abbreviation for PRINT.
> PRINT 'The result is 'x
The result is 34
> PRINT (x + 300) (PRINT can handle expressions; EXAMINE cannot.)
334
> PRINT b_array (PRINT cannot handle aggregate references except for...
*** Error:
> PRINT str character strings.)
Welcome home!
> PRINT -Ascii c (PRINT the contents of variable c as an ASCII value.)
54