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

6 lines
92 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(condp < 3
4 :a ; cond equivalent would be (< 4 3) :a
3 :b
2 :c
1 :d) ; returns :c