Hello, I have been learning Lisp through the 'Common Lisp Cookbook' recently and am having some trouble with package management. I have created two files: packages.lisp and pathnames.lisp that look as follows:
packages.lisp:
packages.lisp:
(defpackage :edu.american.spam
(:use :common-lisp :edu.american.pathnames))
pathnames.lisp
(in-package :edu.american.spam)
However, when I run pathnames.lisp this is what I'm getting:
11:01@host:.+ments/lisp/spam$ clisp pathnames2.lisp
*** - SYSTEM::%FIND-PACKAGE: There is no package with name "EDU.AMERICAN.SPAM"
Any help would be most appreciated. Thanks.