PARSE
Syntax PARSE word
 
Explanation
PARSE converts its input into a Logo list. PARSE is the command called by Logo when it reads a line of input from the Listener.

PARSE is a convenient way to create lists with (parentheses) instead of [brackets].

Examples PARSE "HELLO
Result: [HELLO]
PARSE "|(STAMPRECT 100 100 \"TRUE)|
Result: [(STAMPRECT 100 100 "TRUE)]

The Listener runs internally the following procedure:

TO LISTEN
     RUN PARSE READQUOTE
     LISTEN
END

TopIndex