(define (reverse l) (define (iter a r) (if (null? a) r (iter (cdr a) (cons (car a) r)))) (iter l '()))
No comments:
Post a Comment