brave-clojure-web
brave-clojure-web copied to clipboard
Sometimes the code is hard to understand, because the ➊ and ➋ line markers cause bad indention. Take for example the code after "Clojure lets you work around this apparent...
In Core Functions in Depth, you [introduce](https://github.com/flyingmachine/brave-clojure-web/blob/master/content/cftbat/core-functions-in-depth.html#L456) `lazy-seq`: ``` clojure (defn even-numbers ([] (even-numbers 0)) ([n] (cons n (lazy-seq (even-numbers (+ n 2)))))) ``` It would help the understanding, if...
output here should be 1.1 not 1.8
Hi! The Emacs page is excellent. However, under step 3 it says: "Download the Emacs configuration zip file from the book’s resource page and unzip it. Its contents should be...
Hi Daniel, After presenting the function can-move?, you wrote this: > Second, you use comp to compose this function with not-empty. This function is self-descriptive; it returns true if the...