Name: Anonymous 2008-09-01 7:21
IMPLEMENT THE COLLECTOR!!!
(((((o) 'a) 'b) 'c)) ; => (a b c)
(((((o) 'a) 'b) 'c)) ; => (a b c)
(define (o)
(let ((lst ()))
(define (collect . x)
(cond ((null? x)
lst)
(#t
(set! lst (append lst x))
collect)))
collect))