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


DU< Search:

In Comparison Words in 32-bit library

Word Name: DU<
Type: Standard word
Data Stack Signature: ud:x ud:y – true|false
Return Stack Signature: --
Availability: V1.2
Description:

Returns TRUE if the double value x is logically less than the double value y (an unsigned comparison), otherwise returns FALSE.

Example:

123456. 100. DU< . (displays 0 (false))
100. -99. DU< . (displays -1 (true))
100. 101. DU< . (displays -1 (true))

Comment:

None

See Also: U< 

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