l(define
member(e l)
l (cond
l ((null l) #f)
l ((equal e (car l)) #t)
l (else (member e (cdr l)))
l ))
lOnce an element is a
member, its always a member
lOnce you start
returning true, you keep on returning true
until you unwind the whole recursive call stack