is there a format directive that loops over two lists, as follows?
- Code: Select all
(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 here
is to understand the format directives a bit better.
