Files
hakorune/local_tests/test_wasm_simple.nyash

9 lines
183 B
Plaintext
Raw Normal View History

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