webdev
12-28-2009, 12:47 AM
Merry Christmas everyone! I'm using Lisp in a Box (emacs + GC Lisp) And i tried making a function which takes a number as argument, adds 1 to it if it's negative, and substracts 1 from it if it's positive. (look) (defun enlarge(x) (if (< x 0) (- x 1) nil) (if (> x 0)...