<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Comparison Words in TurboForth Kernal
Performs an unsigned < comparison.
none
Replaces a and b with TRUE if unsigned value a is less than unsigned value b, else replaces with FALSE.
TRUE
FALSE
Note: No version of U> is present, however U< can be used to derive U> as follows:
U<
: U> ( a b -- flag) SWAP U< ;