Welcome to the CHICKEN Scheme pasting service
simple recursion added by dlind on Fri Aug 17 11:23:00 2012
(define add-lists
(lambda (l1 l2)
(if (null? l1)
l2
(cons (+ (car l1) (car l2))))))(define add-lists
(lambda (l1 l2)
(if (null? l1)
l2
(cons (+ (car l1) (car l2))))))