Lisp

Lisp脳

(defun shrink-alist (alist) (let (tmp) (dolist (x alist) (or (assq (car x) tmp) (push x tmp))) (reverse tmp))) より (defun shrink-alist (alist) (and alist (cons (car alist) (shrink-alist (remove-if (lambda (x) (eq (car x) (caar alist))) (c…

Common Lisp HyperSpec

http://www.lisp.org/HyperSpec/FrontMatter/index.html こっちの方が新しい?

Common Lisp the Language, 2nd Edition

http://www-2.cs.cmu.edu/Groups/AI/html/cltl/cltl2.html いまさらながらCommon Lispの仕様書を読む。買ったら8000円もする本がオンラインで手に入るのはとても有り難い。英語だけど。邦訳はないかな〜。

xyzzy Lisp Programming

http://www.geocities.co.jp/SiliconValley-Oakland/1680/xyzzy_lisp.html Common Lispでの基本的なリスト操作から簡易エキスパートシステムまで

Emacs Lisp あれこれ

http://www.mew.org/~kazu/doc/elisp/ Mewの作者山本和彦さんのEmacs Lisp話

Spam ELisp パッケージを使った Spam の濾過

http://www.bookshelf.jp/texi/gnus/gnus-ja_10.html#SEC343 T-gnusも便利そうだなあ