about summary refs log tree commit diff
path: root/lisp/klatre/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/klatre/package.lisp')
-rw-r--r--lisp/klatre/package.lisp9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/klatre/package.lisp b/lisp/klatre/package.lisp
new file mode 100644
index 0000000000..0cf7336feb
--- /dev/null
+++ b/lisp/klatre/package.lisp
@@ -0,0 +1,9 @@
+(defpackage #:klatre
+  (:documentation "Grab-bag utility library for Common Lisp")
+  (:use #:cl)
+  (:export
+   ;; Miscellanious utilities
+   #:comment #:posp
+
+   ;; Sequence functions
+   #:chunk-list #:mapconcat))