GOTO @ n
Purpose | To branch unconditionally out of
the normal program sequence to a specified line with label @n within the present
Custom Function. The destination line must have a corresponding line label marked as "@n", where n must be a constant within 0-255. Note that the label is local only to the present CusFn. i.e. another CusFn may have a label with the same n but the GOTO @n will only branch to the line label within the same CusFn. |
Examples | @156 SETBIT 0,3 . . . GOTO @156 |
Comments: | An error message will appear during compilation if the destination label is undefined. |
Basic to TBASIC Reference Manual