Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1.  
  2. (defun node-is-in-list(list node)
  3. (if (eql NIL (first list))
  4. NIL
  5. (if eql node (first list)
  6. T
  7. (node-is-in-list((rest list) node)))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement