nlattessi

Seminario_TP2_EJ11

Apr 18th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.13 KB | None | 0 0
  1. (defun pertenece (atomo lista)
  2.     (if (null (cdr lista)) nil
  3.         (if (eq atomo (car lista)) t (pertenece atomo (cdr lista))
  4.         )
  5.     )
  6. )
Advertisement
Add Comment
Please, Sign In to add comment