A reader-macro way to create non-destructive nicknames within portable Common Lisp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- ;;;; pseudonyms.asd
-
- (asdf:defsystem #:pseudonyms
- :description "Relative package nicknames through macros"
- :author "Michal \"phoe\" Herda"
- :license "FreeBSD (BSD 2-clause)"
- :depends-on (#:trivial-garbage
- #:named-readtables)
- :serial t
- :components ((:file "package")
- (:file "pseudonyms")))
|