I need help with the format function and arrays.
My goal is to print a 2 dimensional N & middot; N integers as N integers per line. For instance:
should be printed as
1 2 3 4 5 6 7 8 9
I could not find the documentation on how to use format to print arrays. Is it possible to do this, or should I convert my array to a list and use something like:
(format t "~{~%~{~A~^ ~}~}" list)
source share