summaryrefslogtreecommitdiff
path: root/tnslc/tnslc_wrapped.tnsl
diff options
context:
space:
mode:
Diffstat (limited to 'tnslc/tnslc_wrapped.tnsl')
-rw-r--r--tnslc/tnslc_wrapped.tnsl6
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()