- Add efficient `malloc`/`free` impl, based on Zig wasm allocator probably - maybe just do it based on `heap` variable keyword (implicit malloc call), harder to fuck up (but also maybe makes `free` slip your mind?) - Look into somewhat seamless struct conversion between allocation types (preferably just something like ``` gc some_struct hello; heap some_struct hello; stack some_struct hello; ``` ?
malloc/freeimpl, based on Zig wasm allocator probablyheapvariable keyword (implicit malloc call), harder to fuck up (but also maybe makesfreeslip your mind?)?