4 lines
114 B
Scheme
4 lines
114 B
Scheme
|
|
(define (string-repeat n str)
|
||
|
|
(fold string-append "" (make-list n str)))
|
||
|
|
(string-repeat 5 "ha") ==> "hahahahaha"
|