diff options
-rw-r--r-- | cmamut.asd | 6 | ||||
-rw-r--r-- | cmamut.lisp | 1 | ||||
-rw-r--r-- | package.lisp | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/cmamut.asd b/cmamut.asd new file mode 100644 index 0000000..e37056b --- /dev/null +++ b/cmamut.asd @@ -0,0 +1,6 @@ +(asdf:defsystem #:cmamut + :serial t + :depends-on () + :components + ((:file "package") + (:file "cmamut"))) diff --git a/cmamut.lisp b/cmamut.lisp new file mode 100644 index 0000000..7b64756 --- /dev/null +++ b/cmamut.lisp @@ -0,0 +1 @@ +(in-package #:cmamut) diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..3431e2b --- /dev/null +++ b/package.lisp @@ -0,0 +1,2 @@ +(defpackage #:cmamut + (:use #:cl)) |