Futurebasic/Language/Reference/on expr goto

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

ON <expr> GOTO[edit | edit source]

Statement[edit | edit source]

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

Syntax[edit | edit source]

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

Description[edit | edit source]

This statement jumps to one of the indicated label 's or lineNum 's, according to the value of expr. If expr equals 1, then the program jumps to label1 or lineNum1; if expr equals 2, then the program jumps to label2 or lineNum2, 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> GOTO statement does nothing.

See Also[edit | edit source]

GOTO; ON <expr> GOSUB; SELECT