Programming Clojure, Fourth Edition: B1.0 p69

Code:

(range start)
(range start end)
(range start end step)

Should be:

(range end)
(range start end)
(range start end step)

Note the start that becomes end on the first line.