blob: 9c0dac093d19bbb0a229e7de63afa65525601b0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; flatbind.asd
(asdf:defsystem #:flatbind
:description "Syntactic sugar cribbing style from haskell's do syntax."
:author "Colin <colin@cicadas.surf>"
:license "Unlicense"
:version "0.0.1"
:serial t
:depends-on (#:argot #:alexandria)
:components ((:file "flatbind")))
|