diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-01-30 21:11:06 -0600 |
|---|---|---|
| committer | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-01-30 21:11:06 -0600 |
| commit | 0a286901b4b91a61401cd9db3bf21353e9608725 (patch) | |
| tree | 2d3c9e81b9f96b4f5c6223bb026a859b41305677 /src/main.zig | |
| parent | 117be1e9f9c2e353694b40e0eb686b2621317063 (diff) | |
| download | gren-0a286901b4b91a61401cd9db3bf21353e9608725.tar.gz | |
begin on parser
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index 6095e81..91ce155 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,5 +1,6 @@ const std = @import("std"); const tok = @import("tokenizer.zig"); +const pars = @import("parser.zig"); pub fn main() !void { const inneralloc = std.heap.smp_allocator; @@ -37,4 +38,6 @@ pub fn main() !void { for (tokens) |t| try stdout.print("{s}\n", .{ try t.print(alloc) }); try stdout.flush(); + + pars.parse(tokens); } |
