Skip to content

Instantly share code, notes, and snippets.

@rockBreaker
Created July 7, 2014 08:20
Show Gist options
  • Save rockBreaker/7850ff0afb5cfe667a4f to your computer and use it in GitHub Desktop.
Save rockBreaker/7850ff0afb5cfe667a4f to your computer and use it in GitHub Desktop.
(defn author->string
[author]
(if
(contains? author :birth-year)
(str (:name author)'" (" (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