<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Flow Control Words in TurboForth Kernal
Executes the words following IF if flag evaluates to TRUE. Starts an IF...ELSE...THEN clause.
IF
TRUE
ELSE
THEN
: ODD/EVEN ( n -- ) CR 1 AND IF ." ODD" ELSE ." EVEN" THEN CR ;
none