Programming Clojure, Fourth Edition: error in the example of read-string use (page 48)
;; Does not evaluate, just returns as data(read-string “(+ 1 2)”) → (+ 1 1)
This example reads the string “(+ 1 1)”, parses it as Clojure data, and returns
a list of three values: the symbol +, the number 1, and the number 2.
Confusion in the example : (+ 1 1) vs. (+ 1 2)
Also, the first semicolon in the code is not syntactically colored.
Thanks for the book !
François