syrup/syrup.asd

12 lines
407 B
Common Lisp

(asdf:defsystem "syrup"
:description "Assorted syntactic sugar for Lisp."
:version "1.3"
:author "~keith <keith@keithhacks.cyou>"
:homepage "https://bytes.keithhacks.cyou/keith/syrup"
:license "Public Domain/CC0"
:components ((:file "syrup")
(:file "exports")
(:file "control-flow")
(:file "fun-utils")
(:file "strings"))
:serial t)