Ludovic Courtès schreef op wo 30-03-2022 om 17:14 [+0200]: > >      (format #t "Accepted connection on ~0@*~a from ~1@*~a." "foo" > > "bar")) > > Hmm that doesn’t seem to work: > > --8<---------------cut here---------------start------------->8--- > scheme@(guile-user)> ,use(ice-9 format) > scheme@(guile-user)> (format #f "Accepted connection on ~@0*~a from > ~@1*~a." 1 2) You are writing ~@0*~a. However, the number must be before the @: ~0@*~a. If the number is moved between the ~ and @, then it works for me. Greetings, Maxime.