Guest User

Untitled

a guest
May 17th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (define (find predicate? list)
  2. (cond
  3. ((null? list) #f)
  4. ((predicate? (car list)) (car list))
  5. (else (find predicate? (cdr list)))))
Add Comment
Please, Sign In to add comment