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