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