RosettaCodeData/Task/Function-composition/Clojure/function-composition.clj
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
116 B
Clojure

(defn compose [f g]
(fn [x]
(f (g x))))
; Example
(def inc2 (compose inc inc))
(println (inc2 5)) ; prints 7