Play IT

Macro expander

Интерактивное демо «Macro expander».

languagesencyclopedia

Macro expander

Clojure / Lisp — макрос подставляет форму до eval

(defmacro unless [test body]
  (list 'if test nil body))
(unless (= x 0) (/ 1 x))
… нажмите Expand

unless — sugar для (if test nil else)