CONTINUE

Purpose

The CONTINUE statement is an executable control statement that takes no action; it has no effect. This statement is often used as the terminal statement of a loop.

Syntax

Read syntax diagramSkip visual syntax diagram>>-CONTINUE----------------------------------------------------><
 

Examples

     DO 100 I = 1,N
        X = X + N
100  CONTINUE

Related information