Futurebasic/Language/Reference/on expr gosub

ON <expr> GOSUB edit

Statement edit

(+) Appearance (+) Standard (+) Console

Syntax edit

ON expr GOSUB {"label1"|lineNum1}[,{"label2"|lineNum2}...]

Description edit

This statement calls one of the subroutines indicated by a label or a lineNum, according to the value of expr. If expr equals 1, then the subroutine at label1 or lineNum1 is called; if expr equals 2, then the subroutine at label2 or lineNum2 is called, and so on. If expr is less than 1, or greater than the number of label 's and lineNum 's in the list, then the ON <expr> GOSUB statement does nothing.