PRINTQUOTE (PQ)
Syntax PRINTQUOTE object
PQ object
(PRINTQUOTE object channel)
(PQ object channel)
 
Explanation PRINTQUOTE prints its input to the output stream and adds a carriage return. If the input is a list, PRINTQUOTE removes the brackets. PRINTQUOTE is much like PRINT, but it can only print a single input.

A channel number may be entered as a second, optional input. If present, PRINTQUOTE writes to that channel instead of writing to the output stream. This makes it easier to switch among multiple output streams.

See also TYPE and SHOW.

Examples PRINTQUOTE "HELLO 
HELLO 
PQ [HI HOW ARE YOU?] 
HI HOW ARE YOU?  

TopIndex