diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2023-09-18 22:57:27 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2023-09-18 22:57:27 -0400 |
commit | 2570eded660b769b0f49edb673346b28c6ca7c9b (patch) | |
tree | c88c156cd8702597f4115da8f000095ff096608f /tnslc/tnslc_wrapped.tnsl | |
parent | 8b9b469242cb628fe469edaa4cc55bf952de178b (diff) |
stuff
Diffstat (limited to 'tnslc/tnslc_wrapped.tnsl')
-rw-r--r-- | tnslc/tnslc_wrapped.tnsl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tnslc/tnslc_wrapped.tnsl b/tnslc/tnslc_wrapped.tnsl index 2d5df69..3e73778 100644 --- a/tnslc/tnslc_wrapped.tnsl +++ b/tnslc/tnslc_wrapped.tnsl @@ -2,9 +2,9 @@ :include "logging.tnsl" :include "utils.tnsl" :include "vector.tnsl" -# :include "tokenizer.tnsl" +:include "tokenizer.tnsl" :include "compiler_structs.tnsl" -# :include "compiler.tnsl" +:include "compiler.tnsl" {}uint8 w_usage = "Usage: tnslc [file to compile] [file to write]" @@ -21,6 +21,8 @@ in.start(argv{1}) out.start(argv{2}) + compile(in, out) + in._del() out._del() |