Arc Forumnew | comments | leaders | submitlogin
3 points by idoh 5270 days ago | link | parent

I've found them really useful to build up html. Compare "tag" as a macro versus "tag" as a function.

  (tag body
    (tag div
      (map display-thread threads)))

  (tag body
    `(tag div
       ,@(map display-thread threads)))
This is sort of a simplistic example, but once you get deep into it, you are always quoting and unquoting, and it just gets too tedious.