mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Fix tuck definition
This commit is contained in:
parent
8612e00b9f
commit
6b8264756b
@ -59,7 +59,7 @@ Forth, but most of what is written here should work elsewhere.
|
|||||||
|
|
||||||
\ ---------------------- More Advanced Stack Manipulation ----------------------
|
\ ---------------------- More Advanced Stack Manipulation ----------------------
|
||||||
|
|
||||||
1 2 3 4 tuck \ duplicate the top item into the second slot: 1 2 4 3 4 ok
|
1 2 3 4 tuck \ duplicate the top item below the second slot: 1 2 4 3 4 ok
|
||||||
1 2 3 4 over \ duplicate the second item to the top: 1 2 3 4 3 ok
|
1 2 3 4 over \ duplicate the second item to the top: 1 2 3 4 3 ok
|
||||||
1 2 3 4 2 roll \ *move* the item at that position to the top: 1 3 4 2 ok
|
1 2 3 4 2 roll \ *move* the item at that position to the top: 1 3 4 2 ok
|
||||||
1 2 3 4 2 pick \ *duplicate* the item at that position to the top: 1 2 3 4 2 ok
|
1 2 3 4 2 pick \ *duplicate* the item at that position to the top: 1 2 3 4 2 ok
|
||||||
|
Loading…
Reference in New Issue
Block a user