The Hyper Programming Language

'continue' Statement

General

The continue statement in Hyper is almost identical to that in C++ and Java. It goes to the next iteration for a loop or iterate statement.

Syntax

There are two possible forms. The first one is simply the keyword continue, while the second one is continue loop or continue iterate.

Semantics

The continue statement used in the simple form applies to the nearest loop or iterate statement. When using the second form, you indicate for what type of statement you want to goe to the next iteration. Of course, for both uses the continue statement must be somewhere inside the statement it refers to.

See also


Valid HTML 4.01 Strict Valid CSS!