diff options
| author | Baitinq <[email protected]> | 2025-01-27 20:44:02 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-27 23:44:02 +0100 |
| commit | ca1823eda5b9ee3a186cddaf711d19a4016d03be (patch) | |
| tree | 2308107fbde7e0bea2454a19d44c8481b31df740 /src/main.zig | |
| parent | Codegen: Start working on actual AST codegen (diff) | |
| download | pry-lang-ca1823eda5b9ee3a186cddaf711d19a4016d03be.tar.gz pry-lang-ca1823eda5b9ee3a186cddaf711d19a4016d03be.tar.bz2 pry-lang-ca1823eda5b9ee3a186cddaf711d19a4016d03be.zip | |
Codegen: Get the most basic ever example compiling
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.zig b/src/main.zig index 526b7e4..115c1b8 100644 --- a/src/main.zig +++ b/src/main.zig @@ -23,9 +23,9 @@ pub fn main() !void { const source_evaluator = try evaluator.Evaluator.init(arena.allocator()); const source_codegen = try codegen.CodeGen.init(arena.allocator()); - defer source_codegen.deinit(); + defer source_codegen.deinit() catch {}; - source_codegen.generate_poc(); + // source_codegen.generate_poc(); if (std.mem.eql(u8, path, "-i")) { while (true) { |