1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-18 09:00:51 +00:00
wasmer/examples/grow_memory.wat
2018-11-07 11:57:28 +01:00

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