INCLAN: goto, go to

From CYANA Wiki
Jump to navigation Jump to search

Synopsis

goto label go to label

Description

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.

Examples

go to cont
  ...
cont: print "Now at label cont."