Lugaru's Epsilon
Programmer's
Editor 14.04

Context:
Epsilon User's Manual and Reference
   Epsilon Extension Language
      . . .
      Initialization
      Statements
         . . .
         Looping Statements
         Switch Statements
         Break and Continue Statements
         Return Statement
         Save_var Statements
         . . .
      Conversions
      . . .

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


Lugaru Epsilon Programmer's Editor 14.04 manual. Copyright (C) 1984, 2021 by Lugaru Software Ltd. All rights reserved.