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