;; Installation (ql-dist:install-dist "http://dists.cl21.org/cl21.txt") (ql:quickload :cl21) (in-package :cl21-user) (defpackage myapp (:use :cl21)) (in-package :myapp) ;; Hello, World! (princ "Hello, World!\n") ;-> Hello, World! ;=> "Hello, World! ; " ;; Hash Table -- consistent interface! (defvar *hash* #H()) (getf *hash* :name) ;=> NIL (setf (getf *hash* :name) "Eitaro Fukamachi") ;=> "Eitaro F