Labels
label <name> - Defines a jump label with the specified name. Labels are resolved before execution, so you can jump forward or backward.
goto <label> - Transfers control (jumps) to the specified label. Append an if clause to jump only when a condition holds, for example: goto done, if @_count = 3