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

7 lines
155 B
Common Lisp

(defun repeat (f n)
(f)
(if (> n 1)
(repeat f (- n 1)) ) )
;; an example to test it:
(repeat (lambda () (print '(hello rosetta code))) 5)