summary refs log tree commit diff
path: root/src/main.zig
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-29 23:46:49 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-29 23:46:49 +0100
commit3728e73847da14ee8e063d4ad26d11643f8fb033 (patch)
tree1a6ed3376afa8fc886539ba7e74fbc78919944f8 /src/main.zig
parentCodegen: Get variable declarations kind of working (diff)
downloadinterpreter-3728e73847da14ee8e063d4ad26d11643f8fb033.tar.gz
interpreter-3728e73847da14ee8e063d4ad26d11643f8fb033.tar.bz2
interpreter-3728e73847da14ee8e063d4ad26d11643f8fb033.zip
Codegen: Support variable reassignment
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig2
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("> ", .{});