mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-03 14:22:14 +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)
|
||
|
)
|
||
|
)
|