wasmerio / wasmer-go

🐹🕸️ WebAssembly runtime for Go
https://pkg.go.dev/github.com/wasmerio/wasmer-go
MIT License
2.84k stars 161 forks source link

Tinygo - add example usage func([]byte) []byte #336

Open mirecl opened 2 years ago

mirecl commented 2 years ago

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)

jaredweinfurtner commented 1 year ago

WASM/WASI natively only supports arguments and return values of i32, i64, f32, f64.