Files
hakorune/wasm_demo/simple_test.hako

9 lines
168 B
Plaintext

// Simple Nyash program for WASM testing
static box Main {
main() {
local result
result = 42 + 8
print(result)
return result
}
}