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