Code for the book Mastering Clojure Macros
- 2-advanced_mechanics/24-secret_macro_variables_2.clj
- 2-advanced_mechanics/25-secret_macro_variables_3.clj
- `'~k is equal to
(quote ~k)
and(list 'quote k)
(list 'quote k)
going to syntax quoting: remove list, remove ', eval k
- `'~k is equal to
- Chapter 8 mostly is obsolete except for pattern matching section as used libraries are not supported any more.