aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-01-08 22:18:22 +0100
committertomsmeding <tom.smeding@gmail.com>2016-01-08 22:18:22 +0100
commit73725d0f4d1eea724829104b4483aa1585a31afd (patch)
tree40aca60a98516a4ca2a238eb1baa4da3f08cd0b3 /README.md
parent534cd47f7488d7081d68c641b28a7c30c93643b9 (diff)
meta.rip stub
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e48613b..bb466e0 100644
--- a/README.md
+++ b/README.md
@@ -9,8 +9,8 @@ All stack items are signed bigints.
- `D`: duplicate
- `i`: increment
- `d`: decrement
-- `r`: pops the number of items to rotate anti-clockwise
-- `R`: pops the number of items to rotate clockwise
+- `r`: pops the number of items to rotate anti-clockwise ("insert")
+- `R`: pops the number of items to rotate clockwise ("extract")
- `l`: push length of stack (before this push)
- `a` `s` `m` `q` `M` `p`: `+` `-` `*` `/` `%` `^` (add, subtract, multiply, quotient (integer), modulo, power)
- `G` `L` `E`: greater, less, equal; booleans are 1 and 0, as you expect