@mousebot
Thanks mousebot. For automatic shadowing, the uiop:define-package I was using has :mix which is like :use but in the case of conflict, automatically uses shadow in preference of the furthest left package. Every lisp compiler provides asdf and uiop.
@mdhughes
Conversation
Notices
-
Embed this notice
screwlisp (screwtape@mastodon.sdf.org)'s status on Wednesday, 11-Dec-2024 18:22:17 JST screwlisp -
Embed this notice
mousebot (mousebot@todon.nl)'s status on Wednesday, 11-Dec-2024 18:22:19 JST mousebot @mdhughes @screwtape i def a pkg like so:
(defpackage #:altext
(:use #:cl #:uiop)
(:local-nicknames
(#:dex #:dexador)
(#:n #:ningle)
(#:s #:spinneret)
))if you don't want any nicknames/prefix, you can put the package in :use, but you may get name conflicts that way. which is the error in your first post.
-
Embed this notice