mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-25 17:59:27 +00:00
6 lines
153 B
Plaintext
Vendored
6 lines
153 B
Plaintext
Vendored
(module
|
|
(func $message (import "" "hello") (param i32))
|
|
(global $id (import "" "id") i32)
|
|
(func (export "run") (call $message (global.get $id)))
|
|
)
|