<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Flow Control Words in TurboForth Kernal
Causes a DO/LOOP to repeat from the word immediately following DO.
DO
LOOP
: TEST ( -- ) 100 0 DO I . LOOP ;
When the loop index, accessible via I is equal to max (see DO) the loop terminates and execution continues with the word immediatley following DO)
I