Skip to content

Instantly share code, notes, and snippets.

@pjstadig
Created October 21, 2015 14:14
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 pjstadig/73ca10f1dc004e1f16c7 to your computer and use it in GitHub Desktop.
Save pjstadig/73ca10f1dc004e1f16c7 to your computer and use it in GitHub Desktop.
Clojure 1.7.0
user=> (require 'clojure.string)
nil
user=> (clojure.string/lower-case "TRUE")
"true"
user=> (clojure.string/lower-case true)
"true"
user=> (clojure.string/lower-case 1)
"1"
user=> (clojure.string/lower-case {:FOO "BAR"})
"{:foo \"bar\"}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment