RosettaCodeData/Task/Higher-order-functions/Clojure/higher-order-functions.clj
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
128 B
Clojure

(defn append-hello [s]
(str "Hello " s))
(defn modify-string [f s]
(f s))
(println (modify-string append-hello "World!"))