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