Skip to content

Instantly share code, notes, and snippets.

@ulises

ulises/desired Secret

Last active August 29, 2015 14:08
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 ulises/b34d5bae94e8cf8006e9 to your computer and use it in GitHub Desktop.
Save ulises/b34d5bae94e8cf8006e9 to your computer and use it in GitHub Desktop.
(thing (fn [] :foo))
should become:
(do-more* '(fn [] :foo) (fn [] :foo))
(defmacro thing
[f]
`(do-more* (quote ~f) ~f))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment