(mac helper (foo) `(do ,foo)) (mac real-macro (bar) `(helper ,bar)) (let helper (fn (x) (+ x 1)) (real-macro (helper 1)))
-----