Show HN: Wasmer – A Go library for executing WebAssembly binaries
Wasmer is a Go library for executing WebAssembly binaries. Then, we can execute it in Go:
A WebAssembly module can export functions, this is how to run a WebAssembly function, like we did in the previous example with . For instance, let’s consider the basic following Rust program:
In this case, the function is a WebAssembly exported function, whilst the function is a WebAssembly imported function (the WebAssembly instance needs to import it to complete the program).
Source: github.com