wasmer/examples/grow_memory.wat
2018-11-07 11:55:48 +01:00

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)
)
)