5 lines
110 B
Scheme
5 lines
110 B
Scheme
(define print-all
|
|
(lambda things
|
|
(for-each
|
|
(lambda (x) (display x) (newline))
|
|
things)))
|