I am looking for a way to output a character a number of times using format. Is this possible? Can someone fill in the _?_\'s, so that the example works?
_?_
It's nice to see so many solutions: ~A, ~<, and ~{ so far.
The ~@{ iteration construct provides a concise solution:
(format nil "~v@{~A~:*~}" 3 #\*)