tuck ( x y -- y x y )


Vocabulary
shuffle

Word description
Shuffle word. Rearranges the top of the datastack as indicated in the stack effect pattern.

This word is deprecated
The data flow represented by this shuffle word can be more clearly expressed using Lexical variables.


Definition
USING: kernel ;

IN: shuffle

: tuck ( x y -- y x y ) swap over ; deprecated inline