mousebot on Nostr: nprofile1q…qde2h nprofile1q…dl9v9 i def a pkg like so: (defpackage #:altext (:use ...
nprofile1qy2hwumn8ghj7un9d3shjtnddaehgu3wwp6kyqpqxthsnnghl883w5wsjpknjk0jlapvejyepaqx3248ajwg697lc9qqgqde2h (nprofile…de2h) nprofile1qy2hwumn8ghj7un9d3shjtnddaehgu3wwp6kyqpq9y8xknr5twkrg2aeu6dyt9rhk5eg6punm4kl4q07pp0av8aa47es8dl9v9 (nprofile…l9v9) 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.
(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.