3 lines
90 B
Scheme
3 lines
90 B
Scheme
|
|
(define (string-repeat n str)
|
||
|
|
(apply string-append (vector->list (make-vector n str))))
|