diff options
author | Colin Okay <colin@cicadas.surf> | 2022-06-21 06:47:12 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-06-21 06:47:12 -0500 |
commit | 34beb8319f658277c39403ec9b8d58e79b472c97 (patch) | |
tree | 1bd9cf78ca30016183b0dbb5e85cd7c7bf3de140 /package.lisp | |
parent | 918fa5f7a994c3aa6ec4af9005e8a3375b4149af (diff) |
[add] license and package definition
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp index f94e1c2..5a59057 100644 --- a/package.lisp +++ b/package.lisp @@ -1,4 +1,10 @@ ;;;; package.lisp (defpackage #:wheelwork - (:use #:cl)) + (:use #:cl) + (:nicknames #:ww) + (:local-nicknames (#:mat #:3d-matrices) + (#:vec #:3d-vectors)) + (:import-from #:defclass-std #:defclass/std) + (:import-from #:alexandria + #:when-let #:when-let* #:if-let)) |