RosettaCodeData/Task/Repeat/Common-Lisp/repeat.lisp

5 lines
98 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun repeat (f n)
(dotimes (i n) (funcall f)))
(repeat (lambda () (format T "Example~%")) 5)