symbols

Clojure macros and symbol binding

not sure how to express this.. I've written a macro which takes two arguments. The first one essentially contains identifiers for generating a let expression. The second is the code to use inside the let expression (it wants to have access to these identifiers). An example: (match (Add {ast-> x}) (println x)) When the second argumen...