wasmer-c-api 7.2.0

Wasmer C API library
Documentation
1
2
3
4
5
(module
  (func $message (import "" "hello") (param i32))
  (global $id (import "" "id") i32)
  (func (export "run") (call $message (global.get $id)))
)