mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-04 18:10:18 +00:00
12 lines
222 B
Plaintext
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))
|
|
)
|
|
)
|