Logo

Programming-Idioms

History of Idiom 141 > diff from v14 to v15

Edit summary for version 15 by foobar:
New Lisp implementation by user [foobar]

Version 14

2019-01-11, 16:17:56

Version 15

2019-09-26, 16:33:33

Idiom #141 Iterate in sequence over two lists

Iterate in sequence over the elements of the list items1 then items2. For each iteration print the element.

Idiom #141 Iterate in sequence over two lists

Iterate in sequence over the elements of the list items1 then items2. For each iteration print the element.

Code
(map nil #'print (append items1 items))