|
Warning: this is an htmlized version!
The original is here, and the conversion rules are here. |
;; This file:
;; http://angg.twu.net/LISP/seibel-04.lisp.html
;; http://angg.twu.net/LISP/seibel-04.lisp
;; (find-angg "LISP/seibel-04.lisp")
;; Author: Eduardo Ochs <eduardoochs@gmail.com>
;;
;; (defun e () (interactive) (find-angg "LISP/seibel-04.lisp"))
;; https://gigamonkeys.com/book/syntax-and-semantics.html
;; http://www-formal.stanford.edu/jmc/history/lisp/lisp.html
;; http://www-formal.stanford.edu/jmc/history/lisp/node3.html
(defun print-list (list)
(dolist (i list)
(format t "item: ~a~%" i)))
;; Local Variables:
;; coding: utf-8-unix
;; End: