RosettaCodeData/Task/Conditional-structures/Clojure/conditional-structures-5.clj

6 lines
92 B
Clojure
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
(condp < 3
4 :a ; cond equivalent would be (< 4 3) :a
3 :b
2 :c
1 :d) ; returns :c