no title added by mgsk on Tue May 1 14:23:14 2012
(define (display-all . all)
(when (not (null? all))
(begin
(display (car all))
(apply display-all (cdr all)))))(define (display-all . all)
(when (not (null? all))
(begin
(display (car all))
(apply display-all (cdr all)))))