summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-07-21 00:15:20 -0400
committerKyle Gunger <kgunger12@gmail.com>2024-07-21 00:15:20 -0400
commit308a427f3cdb2c7f618b0d48640d064b88bbbceb (patch)
tree439ea530d05ae31ef6a92bf9b5d16483c3bcd270 /tnslc/tnslc.tnsl
parent2f282dd62b9019b6e6613f4af5f50448089497ad (diff)
Basic tokenizer
Diffstat (limited to 'tnslc/tnslc.tnsl')
-rw-r--r--tnslc/tnslc.tnsl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl
index e95a63b..bb7992c 100644
--- a/tnslc/tnslc.tnsl
+++ b/tnslc/tnslc.tnsl
@@ -35,7 +35,9 @@ usage:
fout.init(DEFAULT_FOUT)
;/
- compile.generate(~fin, ~fout)
+ utils.Vector v = parse.gen_token_list(~fin)
+ parse.print_token_list(~v)
+ parse.end_token_list(~v)
fin.end()
fout.end()