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


2OVER Search:

In Programming and Stack Management Words in 32-bit library

Word Name: 2OVER
Type: Standard word
Data Stack Signature: d:x d:y -- d:x d:y d:x
Return Stack Signature: --
Availability: V1.2
Description:

Places a copy of the double value x (which is underneath y) at the top of the stack.

Example:

12345678.
87654321.
2OVER .DS

(displays 12345678 87654321 12345678)

Note: The word .DS is used to non-destructively display the contents of the stack as double-precision numbers.

Comment:

None

See Also: .S  OVER 

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