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


D< Search:

In Comparison Words in 32-bit library

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

Returns TRUE if the double value x is arithmetically less than the double value y, otherwise returns FALSE.

Example:

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

Comment:

None

See Also: <  <= 

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