sicpclojure icon indicating copy to clipboard operation
sicpclojure copied to clipboard

I personally don't think SICP will help you much with Clojure. YMMV.

Results 3 sicpclojure issues
Sort by recently updated
recently updated
newest added

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...

Fixed capitalization typo from Def -> def to be more consistent with SICP's capitalization of `define` throughout the text.

First of all, thank you very much @ecmendenhall for the book! I bet thousands of computer science students interested in FP but with a little more connection to a modern...