3 lines
51 B
Clojure
3 lines
51 B
Clojure
|
|
(defn repeat-function [f n]
|
||
|
|
(dotimes [i n] (f)))
|