diff options
| author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-20 08:37:05 -0300 |
|---|---|---|
| committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-20 08:37:05 -0300 |
| commit | cf7dc2892c1f3a474b7c49f35cbab08bfa08ef71 (patch) | |
| tree | 9dfb32e87a531027210032639099f82543930694 /package.lisp | |
| parent | a8b56704b52488f2865387d8cded8e5f13cdf919 (diff) | |
| download | utils-cf7dc2892c1f3a474b7c49f35cbab08bfa08ef71.tar.gz utils-cf7dc2892c1f3a474b7c49f35cbab08bfa08ef71.zip | |
Add with-package to utils
Diffstat (limited to 'package.lisp')
| -rw-r--r-- | package.lisp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package.lisp b/package.lisp index f4158be..81821dd 100644 --- a/package.lisp +++ b/package.lisp @@ -1,10 +1,10 @@ -(defpackage #:alien - (:use #:cl #:sb-alien) - (:export #:call)) +(defpackage #:utils + (:use #:cl) + (:export #:with-package)) -(defpackage #:print +(defpackage #:alien (:use #:cl) - (:export #:table)) + (:export #:call)) (defpackage #:queue (:use #:cl) |
