Skip to content

Instantly share code, notes, and snippets.

@DAddYE
Created May 9, 2013 03:29
Show Gist options
  • Save DAddYE/5545360 to your computer and use it in GitHub Desktop.
Save DAddYE/5545360 to your computer and use it in GitHub Desktop.
(let [log-agent (agent nil)]
(defn log
[& messages]
(send log-agent (fn [_] (apply println messages)))
(await log-agent)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment