IGNORE
Syntax IGNORE object 
 
Explanation IGNORE simply "swallows" any output created by its input, which can be any Logo object. IGNORE is very handy if the output of any procedure is not needed.

Examples IGNORE INT 50.5 

IGNORE can be used to suppress the printing of a character read from the keyboard.

TO PRESS.ENTER
     PRINT "|Press ENTER to continue.| 

     IGNORE RC 
END
PRESS.ENTER defined
PRESS.ENTER
Press ENTER to continue. 

TopIndex