<< 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 greater than the double value y, otherwise returns FALSE.
 

Example:

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

Comment:

None

See Also: >  D< 

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