1GENERAL: goto - jump to a label within a macro

Usage: goto <label>
       go to <label>

The "goto" statement performs a jump to the first line within the 
current macro that carries the <label>. It is in the responsibility
of the user that the jump does not go into an if- or do-block. A 
label may consist of letters, digits, and underscore characters. 
"goto" statements cannot be used interactively.

Example: go to continue
         .
         .
         continue: print "Now at label continue."

See also: label
