2018-08-20 14:47:56 +02:00

8 lines
223 B
Plaintext

(module
(func $exampleImport (import "example" "exampleImport") (param i32) (result i32))
(func $exampleExport (export "exampleExport") (param $value i32) (result i32)
get_local $value
call $exampleImport
)
)