programming-clojure icon indicating copy to clipboard operation
programming-clojure copied to clipboard

Sample code for the book

Results 6 programming-clojure issues
Sort by recently updated
recently updated
newest added

Removed trailing whitespace from every line that has it. No further edits.

line56 (defn index-filter [pred coll](when pred %28for [[idx elt] %28indexed coll%29 :when %28pred elt%29] idx%29)) I think that 'when' is not necessary. and I've changed like this. (defn index-filter [pred...

addresses https://github.com/stuarthalloway/programming-clojure/issues/7

I have updated the clojure-1-2 branch to use the latest versions of the dependencies. Also it would be easier to set up a swank server using leiningen. Have tested it...

The 'wheel,' which is the centrepiece of primes.clj, is unfathomable (to me and others) without exposure to O'Neill's paper "The Genuine Sieve of Eratosthenes." I have added a reference to...

In the Getting Started part of the project documentation, the launch code after 'lein deps' still asks user to run 'script/repl', should say run 'lein deps' as in the edition...