Open mirecl opened 2 years ago
I write func in Golang with signature func([]byte) []byte - compile in tinygo: tinygo build -o module.wasm -target wasi .
func([]byte) []byte
How to execute this func with wasmer-go
Pls add example usage)
WASM/WASI natively only supports arguments and return values of i32, i64, f32, f64.
Summary
I write func in Golang with signature
func([]byte) []byte
- compile in tinygo: tinygo build -o module.wasm -target wasi .How to execute this func with wasmer-go
Pls add example usage)