RosettaCodeData/Task/Higher-order-functions/Clojure/higher-order-functions.clj

8 lines
128 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defn append-hello [s]
(str "Hello " s))
(defn modify-string [f s]
(f s))
(println (modify-string append-hello "World!"))