summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp14
1 files changed, 13 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp
index f2e0a24..5a1af97 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,5 +1,14 @@
-(defpackage #:alien
+(defpackage #:color
+ (:use #:cl)
+ (:export #:hsl->rgb))
+
+(defpackage #:char
(:use #:cl)
+ (:export #:whitespace?
+ #:visible?))
+
+(defpackage #:alien
+ (:use #:cl #:sb-alien)
(:export #:call))
(defpackage #:queue
@@ -15,6 +24,9 @@
(:use #:cl)
(:export #:split
#:from-list
+ #:underscore->hyphen
+ #:pascal->kebab
+ #:upcase->pascal
#:read-file))
(defpackage #:small-cl