Skip to content

Instantly share code, notes, and snippets.

@aarkerio
Created August 31, 2018 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarkerio/5b9676f2b935fbea796581dc51db643a to your computer and use it in GitHub Desktop.
Save aarkerio/5b9676f2b935fbea796581dc51db643a to your computer and use it in GitHub Desktop.
Clojure: change value in map from string to boolean
(def answer {:answer "France" :correct "true" :age 11})
(update answer :correct #(if (= % "true") true false))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment