Lugaru's Epsilon
Programmer's
Editor 14.04

Context:
Epsilon User's Manual and Reference
   Epsilon Extension Language
      . . .
      Initialization
      Statements
         Expression Statement
         If Statement
         Looping Statements
         Switch Statements
         . . .
      Conversions
      . . .

Previous   Up    Next
Expression Statement  Epsilon Extension Language   Looping Statements


Epsilon User's Manual and Reference > Epsilon Extension Language > Statements >

If Statement

if ( expression )
        statement

If the value of expression is not zero, statement executes. Otherwise control passes to the statement after the if statement.

if ( expression )
        statement1
else
        statement2

If the value of expression is not zero, statement1 executes. If the value of expression is zero, control passes to statement2.



Previous   Up    Next
Expression Statement  Epsilon Extension Language   Looping Statements


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