blob: 31b5dbe62ce2829a918dc49bcdf8e39d0683381b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;;; lambda-tools.asd
(asdf:defsystem #:lambda-tools
:description "Macros and utilities for combining making and lambdas"
:author "Colin Okay <cbeok@protonmail.com>"
:license "GPLv3"
:version "0.0.1"
:serial t
:components ((:file "package")
(:file "macros")
(:file "lambda-tools")))
|