first commit

This commit is contained in:
Lorenzo Torres 2026-02-24 14:28:56 +01:00
commit b574d39a39
23 changed files with 8604 additions and 0 deletions

5
tests/wasm/fib.zig Normal file
View file

@ -0,0 +1,5 @@
extern "env" fn log(ptr: [*]u8, len: i32) void;
export fn init() void {
log(@ptrCast(@constCast("Hello world!\n")), 13);
}