"Paul Werkowski" <[EMAIL PROTECTED]> writes: > | > | lisp -quiet -noinit -nositeinit -eval '(progn (load "zz") (babu::hello) > (quit))' > | you get an error: > | > | Reader error at 31 on #<String-Input Stream>: > | package "BABU" not found > | [Condition of type LISP::READER-PACKAGE-ERROR] > | > | > | What did I do wrong? > | > > Your expectations, I think. > > At the time the reader handles the progn form, it is in the cl-user package > and > the babu package is not yet defined. > > Paul
How do you explain this one? lisp -quiet -noinit -nositeinit -eval '(progn (load "zz") (print (find-package :babu)) (quit))' It does not complain the babu package is not there. Thanks. -cph
