<< 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 arithmetically less than the double value y, otherwise returns FALSE.
123456. 100. D< . (displays 0 (false)) 100. -99. D< . (displays 0 (false)) 100. 101. D< . (displays -1 (true))
None