diff options
| author | Pratik Karki <predatoramigo@gmail.com> | 2017-10-17 14:57:27 +0545 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-17 14:57:27 +0545 | 
| commit | 9a4ce135d6ff30cad495ac1a037ff087497d7b97 (patch) | |
| tree | 276fd59ad0bca5c8123ba761863e17372c4f343b | |
| parent | 233aabcaa42d89d3cfa60dd181011d5ce7a708c3 (diff) | |
| parent | 6b8264756b574be0af84e0a8a104cfa75c0027bb (diff) | |
Merge pull request #2915 from jgjadaoag/forth-fix-tuck-definition
[Forth/en] Fix tuck definition
| -rw-r--r-- | forth.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/forth.html.markdown b/forth.html.markdown index 09f3beb0..ff094017 100644 --- a/forth.html.markdown +++ b/forth.html.markdown @@ -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 | 
