diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-04-12 17:18:05 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-04-12 17:18:05 -0400 |
commit | 8fea53ab8fa095ff7909b5bfbb0c6e94f2206b52 (patch) | |
tree | 3a06f26b7a9fd5edfcb9c84b8f66bc1455f7357e /tnslc/tnslc.tnsl | |
parent | d0213b4202ac12d7e92f7125e87c31d9ecb637dd (diff) |
Update tnslc
Diffstat (limited to 'tnslc/tnslc.tnsl')
-rw-r--r-- | tnslc/tnslc.tnsl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl index 99be327..b1c4b0a 100644 --- a/tnslc/tnslc.tnsl +++ b/tnslc/tnslc.tnsl @@ -15,7 +15,7 @@ #/ /; module tnslc - :include "tnslc/parse/parse.tnsl" + :include "parse/parse.tnsl" ;/ @@ -25,7 +25,7 @@ /; main ({}{}charp args) [int] /; if (len args < 1) - ;tnsl.io.println("Usage: tnslc [File to compile] <path to libtnsl>") + # ;tnsl.io.println("Usage: tnslc [File to compile] <path to libtnsl>") ;return 1 ;/ @@ -33,7 +33,7 @@ ;~{}tnslc.parse.Token psrc = tnslc.parse.tokenize(src) - ;tnsl.io.println(psrc`) + ;tnslc.print_tokens(psrc) ;src.close() |