Wednesday, October 05, 2005

lisp... and other (more useful) things

(defun rev (L) "reverses a list"
(if (null L)
L
(append (rev (cdr L)) (list (car L)))
))
(setf x '(crazy is lisp in programming))
(rev x)
(exit)


Anyway... been doing lisp programming in class. It's a bit crazy.

a lot has been happening lately... people having birthdays, tests for classes, watching movies, forgetting about my blog, etc.

I've been really considering getting an ipod too. I still haven't because I'm not sure I want to spend the money quite yet, but they do have color screens now... so we'll see.

No comments: