Created
October 5, 2014 18:40
-
-
Save yoshikischmitz/04d2db23a0d6437296c9 to your computer and use it in GitHub Desktop.
Clojure string equality
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=> | |
(map (fn [x] | |
(println x '= (clojure.string/capitalize x) | |
(= x (clojure.string/capitalize x))) | |
) "EeeeFFfE") | |
(E = E false | |
e = E false | |
nil e = E false | |
nil e = E false | |
nil F = F false | |
nil F = F false | |
nil f = F false | |
nil E = E false | |
nil nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment