diff --git a/docs/language/core.rst b/docs/language/core.rst index 8a34549..6124911 100644 --- a/docs/language/core.rst +++ b/docs/language/core.rst @@ -222,6 +222,18 @@ Contrast with :ref:`iterable?-fn`. .. _neg?-fn: +macroexpand +----------- + +Usage: ``(macroexpand form)`` + +Returns the macro expansion of form. + +.. code-block:: clojure + + => (macroexpand '(-> (a b) (x y))) + (u'x' (u'a' u'b') u'y') + neg? ----