On Fri, Oct 30, 2020 at 09:05:32AM +0100, Joost Kremers wrote: > > On Fri, Oct 30 2020, Christopher Dimech wrote: > > Can one do the following to have a string length 13 characters > > made of blank spaces, or is it better to use some other construct? > > > > (make-string 13 ? ) > > A space character can also be represented as `?\s` [...] D'oh, yes. Much better, thanks. Cheers - t