Minilisp.pm/t/cond.t
madmaurice 7f1283eecc Improve bool system
lisp has true in form of t and false in form of nil
2021-04-05 00:06:49 +02:00

6 lines
118 B
Turing

(expect "cond" 2
(cond ((> 1 2) 10)
(nil 20)
((zerop 0) 2)
(t 10)))