mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-09 05:06:17 +00:00

Implement the first version of Python language binding Co-authored-by: liang.he <liang.he@intel.com>
5 lines
84 B
Plaintext
5 lines
84 B
Plaintext
(module
|
|
(func $hello (import "" "hello"))
|
|
(func (export "run") (call $hello))
|
|
)
|