about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-23 22:57:31 +0100
committerBaitinq <[email protected]>2025-01-23 22:57:31 +0100
commit48cd1aaec7d6434b46dce82376f0ba5f4cbdf09a (patch)
tree96a22e1d562ce272a1b82640a09d4db9d1af167a /src
parentFeature: Support calling funtion definitions (diff)
downloadinterpreter-48cd1aaec7d6434b46dce82376f0ba5f4cbdf09a.tar.gz
interpreter-48cd1aaec7d6434b46dce82376f0ba5f4cbdf09a.tar.bz2
interpreter-48cd1aaec7d6434b46dce82376f0ba5f4cbdf09a.zip
Misc: Create codegen stub
Diffstat (limited to 'src')
-rw-r--r--src/codegen.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/codegen.zig b/src/codegen.zig
new file mode 100644
index 0000000..a3fc681
--- /dev/null
+++ b/src/codegen.zig
@@ -0,0 +1,4 @@
+const std = @import("std");
+const parser = @import("parser.zig");
+
+pub const CodeGen = struct {};