POSITION:028,114
COLOUR:EUPHORIA
TEXT:00,if              then
COLOUR:POINTS
TEXT:00,   expression 1
TEXT:16,     one or more statements that execute if expression 1 is true
COLOUR:EUPHORIA
TEXT:16,elsif              then
COLOUR:POINTS
TEXT:00,      expression 2
TEXT:16,     one or more statements that execute if expression 2 is true
COLOUR:EUPHORIA
TEXT:16,elsif              then
COLOUR:POINTS
TEXT:00,      expression 3
TEXT:16,     one or more statements that execute if expression 3 is true
COLOUR:EUPHORIA
TEXT:16,elsif              then
COLOUR:POINTS
TEXT:00,      expression 4
TEXT:16,     one or more statements that execute if expression 4 is true
COLOUR:EUPHORIA
TEXT:16,end if
COLOUR:STANDARD
TEXT:32,Using "elsif" with "if" creates a decision chain, where each of the
TEXT:16,expressions are checked one after another, starting with the first one,
COLOUR:POINTS
TEXT:16,expression 1
COLOUR:STANDARD
TEXT:00,            . Once an expression is found to be true, the statements
TEXT:16,conditioned to that expression are run. After this, all other expressions
TEXT:16,that follow in the "if-elsif" chain are skipped, and the first statement
TEXT:16,following "end if" is executed.

