because COMMON-LISP-USER
uses COMMON-LISP
. Or you can use a package-qualified name.
#<The COMMON-LISP-USER package>
But *X*
isn’t a symbol in COMMON-LISP
, so you if type this:
*X*
The REPL can’t start in the package because you’re not allowed to intern new symbols in it; COMMON-LISP-USER
serves as a “scratch” package where you can create your own names while still having easy access to all the symbols in COMMON-LISP
.3 Typically, all packages you’ll define will also use COMMON-LISP
, so you don’t have to write things like this:
CL-USER> :a
CL-USER> keyword:a
:A
T