This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
prpl:do [2016/12/20 10:51] – Exampple explanation GoodMorning | prpl:do [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
^Arguments^Result^Notation^ | ^Arguments^Result^Notation^ | ||
- | | | | [ - ] | | + | | Limit, Index | | [ i1 i2 - ] | |
=== Description === | === Description === | ||
- | The statements following the do, up to the loop statement, are executed repeatedly. Each iteration (loop), the initial value (Index) is incremented by one at the bottom of the loop and compared to Limit. When Index=Limit, | + | The statements following the do, up to the loop statement, are executed repeatedly. Each iteration (loop), the initial value (Index) is incremented by one at the bottom of the loop and compared to Limit. When Index=Limit, |
NOTE: Limit comes first, then the initial value (index). This means that the first number should usually be bigger than the second number. | NOTE: Limit comes first, then the initial value (index). This means that the first number should usually be bigger than the second number. | ||
=== Examples === | === Examples === | ||
- | < | + | < |
+ | do(5 0) | ||
| | ||
loop | loop |