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