PAUSE
Syntax PAUSE
 
Explanation PAUSE temporarily halts the execution of a procedure. PAUSE makes it possible to check variables or change the environment during the execution of a procedure. Using the PAUSE command is equivalent to clicking the Pause (yellow stoplight) button.

When Logo pauses, a special debug window opens where commands may be entered.

To resume execution of the procedure, press the GO (green stoplight) button or type CO or CONTINUE. To return to toplevel, press the STOP (red stoplight) button or type TOPLEVEL.

PAUSE may be used only within a procedure.

Examples TO SQUARE
     DRAW 

     FORWARD 60 
     RT 90 
     PAUSE 
     REPEAT 3 [FD 60 RT 90]
END

TopIndex