< Futurebasic < Language < Reference

ON <expr> GOSUB

Statement

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

Syntax

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

Description

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.

See Also

GOSUB; [[ON <expr&gt]]; GOTO; SELECT

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.