PC Logo Wiki
Advertisement

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 prompt appears after the last character printed.

See also PRINT and SHOW.

Examples

? TYPE "HELLO

HELLO? TYPE [HI HOW ARE YOU?]

HI HOW ARE YOU? (TYPE "TWO "WORDS)

TWO WORDS?

Advertisement