@Commands

END


Description:

Ends the current procedure declaration, or, if used outside of a procedure declaration, ends the code execution.


Example of usage:
PROC MAIN; SAY This text is displayed.; END; CALL MAIN; END; SAY This text should not be displayed. The code execution has ended.;
Output:
This text is displayed.