10 lines
339 B
Common Lisp
10 lines
339 B
Common Lisp
(asdf:defsystem "syrup"
|
|
:description "Assorted syntactic sugar for Lisp."
|
|
:version "1.1"
|
|
:author "~keith <keith@keithhacks.cyou>"
|
|
:homepage "https://bytes.keithhacks.cyou/keith/syrup"
|
|
:license "Public Domain/CC0"
|
|
:components ((:file "syrup")
|
|
(:file "exports")
|
|
(:file "control-flow"))
|
|
:serial t)
|