From 10c73ef997292ace6b22bce1b8244f27161b4e9d Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Fri, 30 May 2025 10:22:02 +0100 Subject: remove ! operator --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'README.md') 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 -- cgit