aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-04-18 10:45:35 +0200
committerAdrian Kummerlaender2017-04-18 10:50:59 +0200
commit44a8573c4d4081552320c80bf9a2ed3eaba6c91c (patch)
tree5762e96fdd951d532546c5e65e435ef4a4603eb2 /README.md
parent717da3529c617c5a8b58b99d45fcd86d8da65a7c (diff)
downloadslang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar.gz
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar.bz2
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar.lz
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar.xz
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.tar.zst
slang-44a8573c4d4081552320c80bf9a2ed3eaba6c91c.zip
Rename boolean operators
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b1d220d..2392094 100644
--- a/README.md
+++ b/README.md
@@ -31,9 +31,9 @@ Currently implemented primitives:
| `rot` | Rotate the top three stack elements |
| `true` | Write true boolean value to top-of-stack |
| `false` | Write false boolean value to top-of-stack |
-| `!` | Negate boolean value |
+| `not` | Negate boolean value |
+| `and` | Boolean and |
+| `or` | Boolean or |
| `<` | Compare size of two integers |
| `=` | Compare equality of two stack values |
-| `&` | Boolean and |
-| `or` | Boolean or |
| `#` | Debug word printing the whole stack to _stdout_ |