repeat
builtin-function
(repeat count value) (repeat value)
(repeat count value)
(repeat value)
Returns a lazy sequence that yields value. The second form yields value an infinite number of times.
value
make-html > (repeat 10 'a) it: (a a a a a a a a a a)