The WebAssembly Go Playground
github.com/progrium/wasm-go-playground
package main import ( "fmt" "runtime" "syscall/js" ) func main() { fmt.Println("This WASM program was compiled in the browser using", runtime.Version()) js.Global().Get("console").Call("warn", "Hello world") }