RosettaCodeData/Task/Variadic-function/Scheme/variadic-function-1.ss

5 lines
103 B
Scheme
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(define (print-all . things)
(for-each
(lambda (x) (display x) (newline))
things))