From d653fc6500f5a09eb509edf7ad0599ab1632ddc1 Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Mon, 17 Aug 2026 10:20:27 +0100 Subject: remove and > and < , primitives, add and <= and >=, primitives --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2bd4b8b..7f3492f 100644 --- a/README.md +++ b/README.md @@ -56,12 +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 `<`, `>`: +operations `<=`, `>=`: (- +5) ; -5 (- +5 +3.2 +.6) ; +1.2 - (< +2 +4 +6.8) ; t - (> +4 +8) ; f + (<= +2 +4 +6.8 +6.8) ; t + (>= +4 +8) ; f #### Random number operation -- cgit