blob: 1658d65d06ccb13036926acc48459e3759c3e145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;;; argot.asd
(asdf:defsystem #:argot
:description "Describe argot here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (#:trivia #:alexandria)
:components ((:file "package")
(:file "argot")))
|