CALL

CALL <label>          ! traditional routine (GOSUB)

CALL <procedure>(<param list>)

CALL <function>(<param list>)

The CALL statement may be used to call traditional BASIC subroutines, in which case it is equivalent to GOSUB, as well as to call structured Procedures and User-Defined Functions.

Examples:

CALL HELP                              ! equivalent to GOSUB HELP

call Print'Cus'Addr'Label(CUSTNO, CH)  ! procedure

Call Fn'Status'Message$(code)          ! function