Copyright Digital Equipment Corp. All rights reserved.

GOTO

 The GOTO statement causes an unconditional branch to a statement
 prefixed by a label.


 Syntax:

    GOTO label


 The 'label' is an unsigned decimal integer or symbolic name that
 represents a statement label.

 The GOTO statement  must  be  within  the  scope  of  the  label
 declaration.   A  GOTO  statement  that  is outside a structured
 statement  cannot  jump  to  a  label  within  that   structured
 statement.   A  GOTO  statement within a routine can branch to a
 labeled statement in an enclosing  block  only  if  the  labeled
 statement appears in the block's outermost level.


Additional information available:

Examples