A.3.4.3 Goto Statements

The goto command causes execution to continue at the specified label. The destination of the goto statement must be in the same section. It is illegal to use goto to jump from within a ForListDo loop to a location outside the loop. The following example illustrates the goto syntax:

goto configure
    .
    .
    .
configure = +
    .
    .
    .