diff options
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/package.lisp b/src/package.lisp new file mode 100644 index 0000000..74c9477 --- /dev/null +++ b/src/package.lisp @@ -0,0 +1,11 @@ +;;;; package.lisp + +(defpackage #:wheelwork + (:use #:cl) + (:nicknames #:ww) + (:local-nicknames (#:mat #:3d-matrices) + (#:vec #:3d-vectors)) + (:import-from #:hyperquirks #:?>) + (:import-from #:defclass-std #:defclass/std) + (:import-from #:alexandria + #:when-let #:when-let* #:if-let)) |