feat: cut over to WASM backend

This commit is contained in:
udo
2026-06-13 08:42:31 +00:00
parent 577aae076e
commit afaa4dd7c0
16 changed files with 603 additions and 25 deletions
+10
View File
@@ -0,0 +1,10 @@
// W4 kill-test: runaway CPU. Epoch interruption traps it at the configured
// deadline; the worker stays healthy.
RENDER(Request& context)
{
print("about to loop\n");
volatile u64 i = 0;
while(i >= 0)
i++;
print("unreachable\n");
}