clojure-koans/src/koans/about_conditionals.clj

11 lines
235 B
Clojure
Raw Normal View History

2010-02-09 23:37:22 +00:00
(meditations
"Your will face many decisions"
(= __ (if (false? (= 4 5)) :a :b))
"Some of them leave you no alternative"
(= __ (if (> 4 3) []))
"And in such a case you may have nothing"
(= nil (if (nil? __) [:a :b :c])))