syrup/syrup.asd

11 lines
339 B
Plaintext
Raw Permalink Normal View History

2024-05-29 14:28:38 +00:00
(asdf:defsystem "syrup"
:description "Assorted syntactic sugar for Lisp."
2024-06-13 22:50:15 +00:00
:version "1.1"
2024-05-29 14:28:38 +00:00
:author "~keith <keith@keithhacks.cyou>"
:homepage "https://bytes.keithhacks.cyou/keith/syrup"
:license "Public Domain/CC0"
2024-06-12 21:37:57 +00:00
:components ((:file "syrup")
2024-06-13 22:50:15 +00:00
(:file "exports")
(:file "control-flow"))
2024-06-12 21:37:57 +00:00
:serial t)