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