feat: minimal virtual machine / runtime port from ink-c

This commit is contained in:
Brett Broadhurst 2026-03-02 11:51:08 -07:00
parent 619eb3b338
commit 849908f251
Failed to generate hash of commit
5 changed files with 833 additions and 35 deletions

8
src/AstGen.zig Normal file
View file

@ -0,0 +1,8 @@
const std = @import("std");
const Ast = @import("./Ast.zig");
const Story = @import("./Story.zig");
/// Perform code generation via tree-walk.
pub fn generate(_: std.mem.Allocator, _: *const Ast) !Story {
return error.OutOfMemory;
}