wasmer/examples/grow_memory.wat

10 lines
176 B
Plaintext
Raw Normal View History

2018-11-06 12:18:16 +00:00
(module
(memory 1)
(func $grow_mem (result i32)
(grow_memory (i32.const 1))
)
(func $main (export "main") (result i32)
(call $grow_mem)
)
)