1
0
mirror of https://github.com/taigrr/wasm-experiments synced 2025-01-18 04:03:21 -08:00
2018-03-01 22:13:42 +00:00

12 lines
134 B
Go

package main
import (
"fmt"
"runtime/js"
)
func main() {
fmt.Println("Test")
js.Global.Get("console").Call("log", "yadayada")
}