-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmain.go
60 lines (45 loc) · 1.28 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"fmt"
"github.com/wasmerio/wasmer-go/wasmer"
)
// https://pkg.go.dev/github.com/wasmerio/[email protected]/wasmer#hdr-Examples
func main() {
// Let's assume we don't have WebAssembly bytes at hand. We
// will write WebAssembly manually.
wasmBytes := []byte(`
(module
(type (func (param i32 i32) (result i32)))
(func (type 0)
local.get 0
local.get 1
i32.add)
(export "sum" (func 0)))
`)
// Create an Engine
engine := wasmer.NewEngine()
// Create a Store
store := wasmer.NewStore(engine)
// Let's compile the module.
module, err := wasmer.NewModule(store, wasmBytes)
if err != nil {
fmt.Println("Failed to compile module:", err)
}
// Create an empty import object.
importObject := wasmer.NewImportObject()
// Let's instantiate the WebAssembly module.
instance, err := wasmer.NewInstance(module, importObject)
if err != nil {
panic(fmt.Sprintln("Failed to instantiate the module:", err))
}
// Now let's execute the `sum` function.
sum, err := instance.Exports.GetFunction("sum")
if err != nil {
panic(fmt.Sprintln("Failed to get the `add_one` function:", err))
}
result, err := sum(1, 2)
if err != nil {
panic(fmt.Sprintln("Failed to call the `add_one` function:", err))
}
fmt.Println("Results of `sum`:", result)
}