- This wiki is out of date, use the continuation of this wiki instead
Loops
From FenixWiki
Definition
LOOP
Loop is a reserved word used to create iterations in your code. The terminator for a loop is end. the statements between these words will get repeated indefinately. There are several types of loops:
- the normal loop
- while loop (terminator: end)
- repeat loop (terminator: until)
- for loop (terminator: end)
- from loop (terminator: end)
Example
Process loops() Begin End