28 lines
465 B
Go
28 lines
465 B
Go
// +build js,wasm
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"syscall/js"
|
|
)
|
|
|
|
// TODO: log seems to cause an issue
|
|
func addition(this js.Value, args []js.Value) interface{} {
|
|
fmt.Println("In WASM", args)
|
|
a, b := args[0].Int(), args[1].Int()
|
|
return a + b
|
|
}
|
|
|
|
func main() {
|
|
ch := make(chan bool)
|
|
|
|
// register functions
|
|
fun := js.FuncOf(addition)
|
|
js.Global().Set("addition", fun)
|
|
|
|
res := js.Global().Get("proxy").Invoke(1, 2)
|
|
fmt.Printf("1 + 2 = %d\n", res.Int())
|
|
<-ch
|
|
}
|