Adomas S

Results 1 issues of Adomas S

In Chapter 1 exercise 1.6 the function ``` (defn new-if [predicate then-clause else-clause] (cond (predicate) then-clause :else else-clause)) ``` is incorrect, because when one tries to use it ``` (new-if...