5 lines
58 B
Clojure
5 lines
58 B
Clojure
|
|
(condp < 3
|
||
|
|
4 :a
|
||
|
|
3 :b
|
||
|
|
:no-match) ; returns :no-match
|