Casting SPELs in Lisp (A comic book intro)

Posted by ungraspiness Fri, 26 May 2006 22:37:00 GMT

(This has been around for a while now but it still deserves more linkage.)

Anyone who has ever learned to program in Lisp will tell you it is very different from any other programming language. It is different in lots of surprising ways- This comic book will let you find out how Lisp’s unique design makes it so powerful!

no comments

Pad a list in Lisp

Posted by ungraspiness Sun, 21 May 2006 18:48:00 GMT

(defun pad-list (li len ie)
  (append li (make-list (- len (length li)) :initial-element ie)))

Posted in ,  | Tags ,  | no comments