Files
wasmer/tests/examples/global.wat
2020-05-18 20:25:35 -07:00

9 lines
185 B
Plaintext
Vendored

(module
(global $xxx (mut i32) (i32.const 42))
(func $main (result i32)
(global.set $xxx (i32.const 0))
(i32.const 1)
)
(export "_start" (func $main))
)