(macroexpand) will help you. (macroexpand '(assert-true (< 4 3))) => (let* [lhsv__1__auto__ 4 rhsv__2__auto__ 3 ret__3__auto__ (< 4 3)] (clojure.core/if-not ret__3__auto__ (throw (java.lang.RuntimeException. (clojure.core/str (quote 4) " is not " (quote <) " " rhsv__2__auto__))) true))
This is what you have after compilation. On Tue, Jan 10, 2012 at 4:20 PM, Brian Mosley <brian.d.mos...@gmail.com> wrote: > Macro expansion time is just before compile time. > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegroups.com > Note that posts from new members are moderated - please be patient with your > first post. > To unsubscribe from this group, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en