post-scarcity/lisp/greaterp.lisp

3 lines
No EOL
130 B
Common Lisp

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