Skip to content

Instantly share code, notes, and snippets.

@razum2um
Created November 4, 2014 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save razum2um/16e285945288089dd07a to your computer and use it in GitHub Desktop.
Save razum2um/16e285945288089dd07a to your computer and use it in GitHub Desktop.
(defmacro m1 [& body]
`(apply min ~@body))
;; (m1 (list 2 1)) is ok
(defmacro m2 [& body]
`(try ... (catch ...)))
;; (m2 (list 2 {})) without fail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment