PRINT (PR)
Syntax PRINT object 
(PRINT) 
(PRINT object1 object2 ...) 
(PR) 
PR object 
(PR object1 object2 ...) 
 
Explanation PRINT prints its inputs to the output stream andd adds a carriage return. If the input is a list, PRINT removes the brackets. With no input, (PRINT) prints a blank line. With multiple inputs, PRINT and its inputs must be enclosed in parentheses.

See also TYPE and SHOW.

Examples PRINT "HELLO 
HELLO 
PRINT [HI HOW ARE YOU?] 
HI HOW ARE YOU? 
(PRINT "TWO "WORDS) 
TWO WORDS
(PRINT) 
 

TopIndex