Unconditional branching

Two statements allow you to define labels and branch to a label, bypassing lines in between:

))JMP:<label>
))LBL:<label>

Where:

<label>
An 8 character label (padded with blanks if necessary). Labels have the same syntax rules as member names. They must start with alphabetic, @, $, or #, and be followed by alphanumeric or $, @, #.

Example:

    ))JMP:LABEL1
          %Y + - SYSTEM UTILITIES
          THE ABOVE LINE IS IGNORED
    ))LBL:LABEL1
Note: DSC will ignore all statements up to the first label statement matching the JMP statement label. You can therefore have multiple non-unique labels. The label specified in the JMP statement is searched for in the forward direction only.

Statements between the JMP and the matching LBL pair are never cached.