Go to the first, previous, next, last section, table of contents.


goto

Control-struct: 'tag goto
file: job.t
package: muf
status: alpha

Jump to the given tag, which may be in the same function or a calling function. If the tag is in the same function, it should not be more deeply nested than the goto.

That is, do not do something like

: f
    'x goto
    withTag x do{ x }
;    

or

: f -> lock
    withTag x do{
        'x goto
        lock withLockDo{ x }
    }
;    

See section withTags.


Go to the first, previous, next, last section, table of contents.