Skip to content

Instantly share code, notes, and snippets.

@dsapoetra
Last active August 31, 2016 10:13
Show Gist options
  • Save dsapoetra/06461900b3ec285d014dcfc0b6c955a7 to your computer and use it in GitHub Desktop.
Save dsapoetra/06461900b3ec285d014dcfc0b6c955a7 to your computer and use it in GitHub Desktop.
(def data (read-string (slurp directory-content-1)))
(defn count-published []
(count (filter #(= "published" (get % :publicity)) data)))
(defn count-all []
(count data))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment