INCLAN: go to

From CYANA Wiki
Revision as of 17:06, 12 August 2009 by Admin (talk | contribs) (Created page with 'Usage: goto ''label'' go to ''label'' The "goto" statement continues execution of a macro at the first line that begins with the label. Jumps into loops (do ... end do) …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Usage: goto label

      go to label

The "goto" statement continues execution of a macro at the first line that begins with the label. Jumps into loops (do ... end do) or conditionally executed statements (if ... else ... end if) are not allowed and can lead to unpredictable results. A label may consist of letters, digits, and underscore characters "_". A label must be followed by a colon.