Difference between revisions of "Recital Flow Control and Looping"
From Recital Documentation Wiki
Barrymavin (Talk | contribs) |
Yvonnemilne (Talk | contribs) (→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
Contents
- 1 Recital Flow Control and Looping
- 1.1 Recital Conditional Statements
- 1.2 The Recital if Statement
- 1.3 The Recital if...else Statement
- 1.4 Recital Looping Statements
- 1.5 Recital for loops
- 1.6 Recital do...while loops
- 1.7 Recital do...case statements
- 1.8 Recital foreach loops
- 1.9 Breaking a Loop
- 1.10 Skipping Statements in a Loop
- 1.11 Summary
Recital Flow Control and Looping
Recital Conditional Statements
The Recital if Statement
IF <condition> [ELSEIF<condition>] [ELSE] ENDIF