diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-04-24 14:40:43 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-04-24 14:40:43 -0400 |
commit | 15eded2fdb4b039a1bcdc4d3094f708e6529c355 (patch) | |
tree | e1687782638b1ae4bf2ca099b9e220738aa075fc /tnslc/compile/compile.tnsl | |
parent | 4a15d64a65cca37a708af4f954415b5c205a9655 (diff) |
Module init and end
Diffstat (limited to 'tnslc/compile/compile.tnsl')
-rw-r--r-- | tnslc/compile/compile.tnsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tnslc/compile/compile.tnsl b/tnslc/compile/compile.tnsl index eca0247..ed13e00 100644 --- a/tnslc/compile/compile.tnsl +++ b/tnslc/compile/compile.tnsl @@ -1,7 +1,9 @@ /; module compile + :import "variable.tnsl" + :import "function.tnsl" :import "module.tnsl" :import "tokenizer.tnsl" - :import "lexer.tnsl" + :import "ast.tnsl" :import "generator.tnsl" :import "error.tnsl" ;/ |