Difference between revisions of "Recital Flow Control and Looping"

From Recital Documentation Wiki
Jump to: navigation, search
 
(The Recital if Statement)
Line 2: Line 2:
 
===Recital Conditional Statements===
 
===Recital Conditional Statements===
 
===The Recital if Statement===
 
===The Recital if Statement===
 +
 +
<pre>
 +
IF <condition>
 +
 +
[ELSEIF<condition>]
 +
 +
[ELSE]
 +
 +
ENDIF
 +
</pre>
 +
 
===The Recital if...else Statement===
 
===The Recital if...else Statement===
 
===Recital Looping Statements===
 
===Recital Looping Statements===

Revision as of 13:53, 14 January 2010

Recital Flow Control and Looping

Recital Conditional Statements

The Recital if Statement

IF <condition>

[ELSEIF<condition>]

[ELSE]

ENDIF

The Recital if...else Statement

Recital Looping Statements

Recital for loops

Recital do...while loops

Recital do...case statements

Recital foreach loops

Breaking a Loop

Skipping Statements in a Loop

Summary