Complete Phase 9.7: Box FFI/ABI + ExternCall with working WASM demo

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-14 08:59:59 +00:00
parent 2091462441
commit b8bc41120e
4 changed files with 605 additions and 0 deletions

9
test_wasm_simple.nyash Normal file
View File

@ -0,0 +1,9 @@
# Simple WASM ExternCall test - for manual MIR injection
static box Main {
init { result }
main() {
me.result = "WASM test ready"
return me.result
}
}