TYPE
Syntax TYPE object 
(TYPE object1 object2 ...)
 
Explanation

TYPE prints its inputs to the output stream without inserting a carriage return. If the input is a list, TYPE removes the brackets. Normally, TYPE prints its inputs on the screen, and the user may type commands after the last character printed. The Logo reader, however, always reads one entire line of input, so it would read the output of TYPE together with the user input.

See also PRINT and SHOW.

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

TopIndex