
Clojure: The subtle difference between quote (‘) and backtick (`)
May 13, 2016
Clojure
The code presented here is available on github . The obvious parts You’ll be aware of these if you’ve ever bothered writing macros: Both prevent evaluation of the subsequent expression: `(1 2 3) ;; => (1 2 3) '(1 2 3) ;; => (1 2 3) Backtick allows you to