Skip to content

Instantly share code, notes, and snippets.

@rockBreaker
Created July 6, 2014 14:44
Show Gist options
  • Save rockBreaker/28fd5863e7a007147a6a to your computer and use it in GitHub Desktop.
Save rockBreaker/28fd5863e7a007147a6a to your computer and use it in GitHub Desktop.
pretty horrible author->string example
(defn author->string
[author]
(if
(contains? author :birth-year)
(str '"(" (get author :birth-year) '" - "(get author :death-year) '")")
(str (:name author)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment