3 lines
71 B
Common Lisp
3 lines
71 B
Common Lisp
|
|
(defun repeat-string (n string)
|
||
|
|
(format nil "~V@{~a~:*~}" n string))
|