Logo

Programming-Idioms

History of Idiom 141 > diff from v7 to v8

Edit summary for version 8 by Dodopod:
New Scheme implementation by user [Dodopod]

Version 7

2016-12-21, 16:38:45

Version 8

2017-06-14, 15:22:04

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 (lambda (x)
         (display x)
         (newline))
         (append '(1 2 3 4) '(5 6 7 8)))