nlattessi

Seminario_TP2_EJ10

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