<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


U< Search:

In Comparison Words in TurboForth Kernal

Word Name: U<
Type: Standard word
Data Stack Signature: a b -- true|false
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Performs an unsigned < comparison.

Example:

none

Comment:

Replaces a and b with TRUE if unsigned value a is less than unsigned value b, else replaces with FALSE.

Note: No version of U> is present, however U< can be used to derive U> as follows:

: U> ( a b -- flag) SWAP U< ;

See Also: < 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>