RosettaCodeData/Task/Repeat/Clojure/repeat.clj
2023-07-01 13:44:08 -04:00

2 lines
51 B
Clojure

(defn repeat-function [f n]
(dotimes [i n] (f)))