(define member? (lambda (target lst) (cond ((null? lst) #f) ((= target (car lst)) #t) (else (member? target (cdr lst))))))