<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Comparison Words in 32-bit library
Returns TRUE if the double value x is logically less than the double value y (an unsigned comparison), otherwise returns FALSE.
123456. 100. DU< . (displays 0 (false)) 100. -99. DU< . (displays -1 (true)) 100. 101. DU< . (displays -1 (true))
None