RosettaCodeData/Task/Function-composition/Clojure/function-composition.clj

8 lines
116 B
Clojure
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(defn compose [f g]
(fn [x]
(f (g x))))
; Example
(def inc2 (compose inc inc))
(println (inc2 5)) ; prints 7