GO TO
Transfers control to a labeled Transact statement.
Syntax
GO TO label;
GO TO specifies an unconditional branch to the statement identified by
label.
Statement Parts
label The label to which the program should branch.
Example
The following statement transfers control to the statement labeled
"NEW-TOTAL".
GO TO NEW-TOTAL;