Skip to content

Instantly share code, notes, and snippets.

@derwolfe
Created March 23, 2016 15:00
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save derwolfe/328ced1e8044d7d908ae to your computer and use it in GitHub Desktop.
recorder
cloudpassage-reporter.core> (defn record-my-actions [fn & args]
(str (resolve (quote fn)) " args:" args))
#'cloudpassage-reporter.core/record-my-actions
cloudpassage-reporter.core> (record-my-actions count 1 2 3)
"#'clojure.core/fn args:(1 2 3)”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment