summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2025-10-17 01:41:28 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2025-10-17 01:41:28 -0300
commitd2a8d3a2171ebbc9934e3703a0f9b6fd4070a6b8 (patch)
tree0288cef6914624b373e880e893169615eb921662
downloadlempel-d2a8d3a2171ebbc9934e3703a0f9b6fd4070a6b8.tar.gz
lempel-d2a8d3a2171ebbc9934e3703a0f9b6fd4070a6b8.zip
Initial Commit
-rw-r--r--lempel.asd6
-rw-r--r--lempel.lisp1
-rw-r--r--package.lisp2
3 files changed, 9 insertions, 0 deletions
diff --git a/lempel.asd b/lempel.asd
new file mode 100644
index 0000000..895e46b
--- /dev/null
+++ b/lempel.asd
@@ -0,0 +1,6 @@
+(defsystem "lempel"
+ :serial t
+ :depends-on ()
+ :components
+ ((:file "package")
+ (:file "lempel")))
diff --git a/lempel.lisp b/lempel.lisp
new file mode 100644
index 0000000..bb063c8
--- /dev/null
+++ b/lempel.lisp
@@ -0,0 +1 @@
+(in-package #:lempel)
diff --git a/package.lisp b/package.lisp
new file mode 100644
index 0000000..f25edf6
--- /dev/null
+++ b/package.lisp
@@ -0,0 +1,2 @@
+(defpackage #:lempel
+ (:use #:cl))