Blob


1 (defun memq (item x)
2 (cond ((null x) nil)
3 ((eql item (car x)) x)
4 (t (memq item (cdr x)))))