<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Flow Control Words in TurboForth Kernal
Adds n to the current loop index. If the index equals or exceeds the loop limit, the loop exits, otherwise the loop executes again.
: TEST 100 0 DO I . 2 +LOOP;
TEST
(0 2 4 6 8 10 12 14 16 etc)
none