hi,
is there a format directive that loops over two lists, as follows?
is to understand the format directives a bit better.
is there a format directive that loops over two lists, as follows?
(format "..." (list 1 2 3) (list 'a 'b 'c ))
=> 1 'a
2 'b
3 'c
I know that I can map format on the two lists. My goal hereis to understand the format directives a bit better.