Setting up a whole lot of testing infrastructure
[clnl] / src / main / package.lisp
index 53772830916dd2c8efee3b2a83ceb4facd1c71aa..1e6592b423c1b620dece1ad9ebe3787a7bca470d 100644 (file)
@@ -1,2 +1,24 @@
 (defpackage #:cl-nl (:use :common-lisp)
- (:export :run))
+ (:export :run :boot :run-commands))
+
+(defpackage #:cl-nl.parser
+ (:use :common-lisp)
+ (:export :parse))
+
+(defpackage #:cl-nl.random
+ (:use :common-lisp)
+ (:shadow #:export)
+ (:export #:set-seed #:next-int #:next-double))
+
+(defpackage #:cl-nl.transpiler
+ (:use :common-lisp)
+ (:export :transpile-command-block))
+
+(defpackage #:cl-nl.nvm
+ (:use :common-lisp)
+ (:export :export-world))
+
+(defpackage #:cl-nl.lexer
+ (:use :common-lisp)
+ (:export :lex))
+