Implement Wasmtime's new API as designed by RFC 11. This is quite a large commit which has had lots of discussion externally, so for more information it's best to read the RFC thread and the PR thread.
5 lines
94 B
Plaintext
5 lines
94 B
Plaintext
(module
|
|
(func $hello (import "global" "hello"))
|
|
(func (export "run") (call $hello))
|
|
)
|