diff options
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages.lisp b/packages.lisp index 0711193..dafbc95 100644 --- a/packages.lisp +++ b/packages.lisp @@ -13,10 +13,15 @@ ;;; Commentary: -;; +;; Define the packages (namespaces) involved in this project. ;;; Code: -(defpackage main +(defpackage lib.macros (:use :cl) + (:export + :_ :--> :->>)) + +(defpackage main + (:use :cl :lib.macros) (:export :start)) |