diff options
| author | Baitinq <[email protected]> | 2025-01-29 23:46:49 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-29 23:46:49 +0100 |
| commit | e48cd7880add5c0ead51e3d316ddb19dc3342343 (patch) | |
| tree | 1a6ed3376afa8fc886539ba7e74fbc78919944f8 /src/main.zig | |
| parent | Codegen: Get variable declarations kind of working (diff) | |
| download | interpreter-e48cd7880add5c0ead51e3d316ddb19dc3342343.tar.gz interpreter-e48cd7880add5c0ead51e3d316ddb19dc3342343.tar.bz2 interpreter-e48cd7880add5c0ead51e3d316ddb19dc3342343.zip | |
Codegen: Support variable reassignment
Diffstat (limited to '')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.zig b/src/main.zig index 115c1b8..5adec59 100644 --- a/src/main.zig +++ b/src/main.zig @@ -25,8 +25,6 @@ pub fn main() !void { const source_codegen = try codegen.CodeGen.init(arena.allocator()); defer source_codegen.deinit() catch {}; - // source_codegen.generate_poc(); - if (std.mem.eql(u8, path, "-i")) { while (true) { try stdout.print("> ", .{}); |