Futurebasic/Language/Reference/on expr gosub

From Wikibooks, open books for an open world
Jump to navigation Jump to search

ON <expr> GOSUB[edit | edit source]

Statement[edit | edit source]

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

Syntax[edit | edit source]

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

Description[edit | edit source]

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.