Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created October 31, 2012 17:31
Show Gist options
  • Save jaycfields/3988510 to your computer and use it in GitHub Desktop.
Save jaycfields/3988510 to your computer and use it in GitHub Desktop.
the-ns
(ns blog)
(def all-updates (atom {}))
(def last-update (atom {}))
(defn process-update [{:keys [src] :as update}]
(swap! all-updates update-in [src] conj update)
(swap! last-update assoc src update))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment