Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
not-working-yet.lisp
Go to the documentation of this file.
1(set! or (lambda values
2 "True if any of `values` are non-nil."
3 (cond
4 ((nil? values) nil)
5 ((car values) t)
6 (t (eval (cons 'or (cdr values)))))))