mirror of
https://github.com/encounter/wasmtime.git
synced 2026-03-30 11:42:15 -07:00
7a1b7cdf92
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
WebAssembly Text Format
5 lines
94 B
WebAssembly Text Format
(module
|
|
(func $hello (import "global" "hello"))
|
|
(func (export "run") (call $hello))
|
|
)
|