bonasso bonasso@traclabs.com writes:
Whenever I try to export a symbol to cl-user from another package, like (export '(memory-apropos) :cl-user) while in a package called memory I get
"The symbol memory-apropos is not accessible in package COMMON-LISP-USER"
But if I do:
(in-package :cl-user) (import 'memory::memory-apropos)
it works.
Is this a bug?
No, that's how EXPORT and IMPORT work.