diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-07-24 00:09:53 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-07-24 00:09:53 -0300 |
commit | bb4b2bc484ed1d827d707a5a50b234d6994af90c (patch) | |
tree | 832ec90bf0f34252447c3fd49311d3af3e319d56 /package.lisp | |
parent | 3d6e80b447ef96cdac3aada1f2ca08073648294f (diff) | |
download | utils-main.tar.gz utils-main.zip |
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 14 |
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 |