Lugaru's Epsilon Programmer's Editor 14.04
Context:
| Break and Continue Statements
|
|
Previous
|
Up
|
Next
|
Switch Statements |
Epsilon Extension Language |
Return Statement |
Epsilon User's Manual and Reference >
Epsilon Extension Language >
Statements >
Break and Continue Statements
break;
This statement exits from the smallest containing for , while ,
do while or switch statement. The break statement
must be the last statement in each case if you don't want
execution to "fall through" and execute the statements for the
following cases too.
continue;
The continue statement immediately performs the test for
the smallest enclosing for , while , or do while statement.
It is the same as jumping to the end of the statement in each of
their definitions. In the case of for , expression3 will be
evaluated first.
Previous
|
Up
|
Next
|
Switch Statements |
Epsilon Extension Language |
Return Statement |
Epsilon Programmer's Editor 14.04 manual. Copyright (C) 1984, 2021 by Lugaru Software Ltd. All rights reserved.
|