qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
GOTO Statement
  Summary  Details                           Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Branches unconditionally to the line label or line number specified. A
 program with many GOTO statements can be difficult to read and debug; use
 structured control statements instead of GOTO statements.
 
    GOTO label-line
 
    ■ label-line    Line label or line number to execute next
 
 See Also
    DO...LOOP Statement              FUNCTION Statement
    IF...END IF Statement            Loops and Decision Structures
    ON ERROR Statement               SELECT CASE Statement
    SUB Statement