(special form)
ENDEND delimits the end of a procedure that is defined with TO.
END is not really a command.
As a result, procedures that manipulate other procedures don't work on END.
For example, PROCEDUREP "END outputs FALSE.
TO ECHO :times :thing REPEAT :times [PRINT :thing] END ECHO 2 "HelloHello HelloECHO 3 "ByeBye Bye Bye