diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-17 10:20:27 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-17 10:26:21 +0100 |
| commit | d653fc6500f5a09eb509edf7ad0599ab1632ddc1 (patch) | |
| tree | 2a9d87d655f43e6d51b9dbef68015bea287b1bdb /README.md | |
| parent | d804473bbf326409856544200818279a9acda805 (diff) | |
remove and > and < , primitives, add and <= and >=, primitivesv.0.2.0
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
