goto
Jump to a label within the current section. Used for retry
loops and conditional repetition.
goto does not cross subroutine boundaries — it can only jump within the section that contains
the matching label.
Properties
goto
An object that accepts the following properties.
goto.label
Label to jump to. Must reference a label step earlier or later in the current section.
goto.max
Maximum number of times this goto can jump to its label. Once the limit is reached, the
section ends without running any further steps.