nlattessi

Seminario_TP2_EJ6

Apr 18th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.09 KB | None | 0 0
  1. (defun positivo (n)
  2.     (cond   ((< n 0) 'Negativo)
  3.         ((= n 0) 'Neutro)
  4.         (t 'Positivo)
  5.     )
  6. )
Advertisement
Add Comment
Please, Sign In to add comment