(defun transpose (m)
(unless (null (car m))
(cons (mapcar #'car m) (transpose (mapcar #'cdr m)))))
...
Lisp On matrix transpose
by mdengler,
October 06, 2007 04:31
Lisp On folding of non-ascii long h...
by luser.myopenid.com/,
October 03, 2007 09:01
YES! Although "~^~% " seems...
(defun header-encode (string) (if (find-if (lambda (c) (> (char-code c) 127)) string) ...
Lisp On folding of non-ascii long h...
by Aaron,
October 02, 2007 12:10
Is this what you want? I h...

Style, and also didn't you ...