Tagged Questions

1
vote
2answers
652 views

Evaluation of part of Clojure cond

Trying to do exercise 1.16 (iterative version of fast-exp) in "Structure and Interpretation of Computer Programs" with Clojure I came up with this: (defn fast-it-exp [base exp res] (cond (= exp 0) …