CREATE
Syntax CREATE filename 
 
Explanation CREATE first deletes an existing file with the name specified by its input if it exists. A new, empty file is prepared for output. The output of CREATE is a channel number which may be assigned to the built-in variable STANDARD.OUTPUT. Data may then be written to the stream using the PRINT, TYPE and other Logo stream output primitives.

See also OPEN and CLOSE.. 

Example MAKE "STANDARD.OUTPUT CREATE "TITLES
POTS
CLOSE :STANDARD.OUTPUT

TopIndex