Skip to content

Commit

Permalink
Fix tuck definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Gabriel J. Adaoag committed Oct 16, 2017
1 parent 8612e00 commit 6b82647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forth.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Forth, but most of what is written here should work elsewhere.

\ ---------------------- 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 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
Expand Down

0 comments on commit 6b82647

Please sign in to comment.