How to cast string to boolean in Clojure

Viewed 7993

I have following statements

(if "true"  (println "working") (println "not working"))

result is - working

(if "false"  (println "working") (println "not working"))

result is - working

Both the time result is same, How can I properly cast string to boolean in clojure.

4 Answers
Related