5.3 CONTINUE Statement

The CONTINUE statement transfers control to the next executable statement. It takes the following form:

CONTINUE

The CONTINUE statement primarily functions as the terminal statement of a labeled DO loop when the loop would otherwise end improperly with either a GO TO, arithmetic IF, or other prohibited control statement.


Previous Page Next Page Table of Contents