mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 07:25:12 +00:00
![Wenyong Huang](/assets/img/avatar_default.png)
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))
|
|
)
|