CONTINUE Statement [ HP COBOL II/XL Reference Manual ] MPE/iX 5.0 Documentation
HP COBOL II/XL Reference Manual
CONTINUE Statement
The CONTINUE statement indicates that no executable statement is present.
It is a no-operation statement and has no effect on the execution of the
program.
Syntax
CONTINUE
Description
CONTINUE can be used anywhere a conditional statement or an imperative
statement is used.
Example
IF A < B THEN
IF A < C THEN
CONTINUE
ELSE
MOVE ZERO TO A
END-IF
ADD B TO C.
SUBTRACT C FROM D.
MPE/iX 5.0 Documentation