CALL n CALL [fn name] |
Purpose | To call another Custom Function CusFn #n as subroutine. When the called function returns, execution will continue from the following statement. n must be an integer constant between 1 and 256 or it can be replaced by the label name of a custom function. |
Examples | IF B > 5 THEN CALL 8 : ELSE CALL NODEAL: ENDIF |
See Also | RETURN |