GOTO

GOTO


GET Index Level GOSUB
Syntax GO{TO} statement.label{:}
GO TO statement.label{:}
Category BASIC
Type Statement
Description Transfers control to the location in the FlashBASIC program that begins with the given statement label.

On statement labels beginning with a non-numeric value, the colon following the "statement.label" is optional in the "goto", but is required following the actual statement label.
Options
See Also statement labels ON ... GOTO go branching
Example goto 99
go to error
if ans='y' then go begin
Warnings
Compatibility
GET Index Level GOSUB