Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
greaterp.lisp
Go to the documentation of this file.
1(set! > (lambda (a b)
2 "`(> a b)`: Return `t` if `a` is a number greater than `b`, else `nil`."
3 (not (negative? (- a b)))))