mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 20:58:28 +00:00
9 lines
185 B
Plaintext
Vendored
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))
|
|
)
|