Closed jakeisnt closed 2 years ago
Hi, are you trying to :use
both packages? This would try to import all their symbols in your package: this is likely to clash. It is generally not encouraged to "use" a package. You can "use" one package and access the symbols of the other ones with its package prefix, like flute:foo
. You can create a package-local nickname to give an even shorter package prefix to a package (f:foo
).
(uiop:define-package mypackage
(:use :cl)
(:local-nicknames
(:alex :alexandria)
(:csv :cl-csv)
(:http :dexador)))
That makes sense! Thank you so much for the help.
When attempting to use
parenscript
andflute
in the same namespace, lots offlute
's names conflict, and lisp interpreters produce errors:How would you recommend that this is resolved? Thanks!