nlattessi

Seminario_TP2_EJ8

Apr 18th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.11 KB | None | 0 0
  1. (defun elempares (lista)
  2.     (if (null (cdr lista)) nil
  3.         (append (list (cadr lista)) (elempares (cddr lista)))
  4.     )
  5. )
Advertisement
Add Comment
Please, Sign In to add comment