mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
10 lines
158 B
Plaintext
10 lines
158 B
Plaintext
(module
|
|
(table 0 anyfunc)
|
|
(memory $0 1)
|
|
(export "memory" (memory $0))
|
|
(export "main" (func $main))
|
|
(func $main (; 1 ;) (result i32)
|
|
(i32.const 0)
|
|
)
|
|
)
|