blob: 6d6aa61c88b0add8858bb871ae0af06f75fb028e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; 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 "grammars")
;(:file "deflanguage")
(:file "argot")))
|