mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
|
(module
|
||
|
(memory 1)
|
||
|
(func $grow_mem (result i32)
|
||
|
(grow_memory (i32.const 1))
|
||
|
)
|
||
|
(func $main (export "main") (result i32)
|
||
|
(call $grow_mem)
|
||
|
)
|
||
|
)
|