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

5 lines
103 B
Scheme
Raw Permalink Normal View History

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