PRINTLINE
Syntax PRINTLINE integerlist
(PRINTLINE integerlist channel)
 
Explanation PRINTLINE prints to the output stream the ASCII characters corresponding to the elements of its input list. A carriage return is not inserted, so if the output of PRINTLINE is printed on the screen, the prompt appears after the last character of the input list.

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

Examples PRINTLINE [71 65 82 66 76 69] 
GARBLE 
PRINTLINE [84 87 79 32 66 65 84 83] 
TWO BATS 
PRINTLINE [116 119 111 32 98 97 116 115] 
two bats 

TopIndex