mirror of
https://github.com/taigrr/wasm-experiments
synced 2025-01-18 04:03:21 -08:00
12 lines
134 B
Go
12 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/js"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Test")
|
|
js.Global.Get("console").Call("log", "yadayada")
|
|
}
|