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.