repeatedly
builtin-function
(repeatedly count func)
(repeatedly func)
Returns a lazy sequence of the values returned by repeated calls to func.
The second form yields an infinite sequence.
make-html > (repeatedly 10 (lambda null "a"))
it: ("a" "a" "a" "a" "a" "a" "a" "a" "a" "a")