GOTO - a control flow statement that branches unconditionally to the specified line Syntax GOTO {linelabel | linenumber} - linelabel or linenumber is the label of the line to execute next. This line must be in the same procedure or subroutine as the GOTO statement See Also EXIT - which provides an alternative way to branch out of a control structure.