Fixed subtraction regression; added new subtraction unit test.

This commit is contained in:
Simon Brooke 2026-02-24 09:08:41 +00:00
parent 62ebaf9819
commit d34d891211
5 changed files with 203 additions and 6 deletions

View file

@ -1,3 +1,3 @@
(set! > (lambda (a b)
)
"`(> a b)`: Return `t` if `a` is a number greater than `b`, else `nil`."
(not (negative? (- a b)))))