Skip to content

Instantly share code, notes, and snippets.

@mdelaurentis
Last active November 19, 2015 01:02
Show Gist options
  • Save mdelaurentis/f4eeb7e655b98ec4aaf1 to your computer and use it in GitHub Desktop.
Save mdelaurentis/f4eeb7e655b98ec4aaf1 to your computer and use it in GitHub Desktop.
(defn make-user [first-name last-name email]
(cond-> {}
first-name (assoc :first-name first-name)
last-name (assoc :last-name last-name)
email (assoc :email email)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment