END
Syntax END
 
Explanation

END ends the definition of a Logo procedure. It checks for any open brackets and reports an error if there are lists which are not closed correctly.

END is used in Logo source files only. Do not use END when defining a procedure with the DEFINE command or inside the TO editor.

Examples TO SQUARE 
REPEAT 4 [FD 40 RT 90] 
END  

TopIndex