diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 05:56:21 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 05:56:21 -0400 |
| commit | 4fbc5d6511a404319a5392f96b105823a63de893 (patch) | |
| tree | 7e6a7f61df15cb29a333625da17bf9dfae049533 /tnslc/compile/codegen.tnsl | |
| parent | f0f441ed214e72980db254d3f5b238ec17c42420 (diff) | |
[tnslc] Tokenizer bootstrap
Diffstat (limited to 'tnslc/compile/codegen.tnsl')
| -rw-r--r-- | tnslc/compile/codegen.tnsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tnslc/compile/codegen.tnsl b/tnslc/compile/codegen.tnsl index dae3764..d30ef37 100644 --- a/tnslc/compile/codegen.tnsl +++ b/tnslc/compile/codegen.tnsl @@ -65,9 +65,9 @@ # var_tests(~buffer) # Write assembly to output file - fout.create() + fout`.create() buffer.write_to(fout) - fout.close() + fout`.close() # Free all structs mod.end() |