wasmer/examples/exit.wat
2019-04-22 16:45:36 -07:00

12 lines
222 B
Plaintext

(module
(import "wasi_unstable" "proc_exit" (func $proc_exit (param i32)))
(export "_start" (func $_start))
(memory 10)
(export "memory" (memory 0))
(func $_start
(call $proc_exit (i32.const 7))
)
)