mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-04 18:10:18 +00:00
9 lines
203 B
Plaintext
9 lines
203 B
Plaintext
(module
|
|
(memory 1)
|
|
(func $main (export "main") (result i32)
|
|
(drop (memory.grow (i32.const 1)))
|
|
(i32.store (i32.const 0) (i32.const 1600))
|
|
(i32.load (i32.const 0))
|
|
)
|
|
)
|