mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-14 06:35:40 +00:00
8 lines
170 B
Plaintext
8 lines
170 B
Plaintext
(module
|
|
(func $inc (import "env" "inc"))
|
|
(func $get (import "env" "get") (result i32))
|
|
|
|
(func (export "inc_and_get") (result i32)
|
|
call $inc
|
|
call $get))
|