summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Cerqueira <dan.git@lispclub.com>2025-05-30 10:22:02 +0100
committerDaniel Cerqueira <dan.git@lispclub.com>2025-05-30 10:22:02 +0100
commit10c73ef997292ace6b22bce1b8244f27161b4e9d (patch)
treeee76fe4c1035c5d67cdc543fd1dccdae67afb709 /README.md
parent2b03b74037e5844c4bc05e9febda45e560a46f42 (diff)
remove ! operator
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index cb99cfc..a0db7e5 100644
--- a/README.md
+++ b/README.md
@@ -56,13 +56,12 @@ numbers) or by `-` (for negative numbers).
There is support for the five arithmetic operations `+`, `-`, `*`, `/`, `%` (with
`%` the operands are automatically converted to integer) as well as the relational
-operations `!` (different), `<`, `>`:
+operations `<`, `>`:
(- +5) ; -5
(- +5 +3.2 +.6) ; +1.2
(< +2 +4 +6.8) ; t
(> +4 +8) ; f
- (! +4 +4) ; f
#### Random number operation