On Wed, Oct 21, 2009 at 7:35 PM, Gorsal <[email protected]> wrote: > > I was just idly wondering: even after searching google, i haven't seen > the once-only macro+clojure pop up any results. Its easy to > implement, but I was wondering if there was some reason people weren't > using this to avoid multiple evaluation in macros. Is something else > used?
We usually just use the likes of: `(let [x# ~arg1] (do-something-with x# 42 (map ~arg2 x#))) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
