@Commands

CALL {proc}


Description:

Calls the specified previously declared procedure, executing all of the commands inside.

Arguments:

PROCEDURE {proc} - the specified procedure name that was declared using the PROC command.


Example of usage:
SET 0 0; PROC MAIN; SAY %^0; SET 0 (%^0 $+ 1); IF (%^0$<5) CALL MAIN; END; CALL MAIN;
Output:
0 1 2 3 4