Arc Forumnew | comments | leaders | submitlogin
1 point by almkglor 5370 days ago | link | parent

  (mac helper (foo)
    `(do ,foo))
  (mac real-macro (bar)
    `(helper ,bar))

  (let helper
       (fn (x) (+ x 1))
    (real-macro (helper 1)))


2 points by rntz 5344 days ago | link

This could be a poster child for hygienic macros.

-----