-
Notifications
You must be signed in to change notification settings - Fork 116
Open
Labels
go modulesIssues related to Go 1.11 WebAssembly module support.Issues related to Go 1.11 WebAssembly module support.
Description
Have you guys done any testing with modules created via Go 1.11? I assume it might likely be an issue with wagon?
Simple test.go:
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World")
}
Using Go 1.11rc1:
GOOS=js GOARCH=wasm go build -o test.wasm test.go
and then
./life -entry main /Users/gsingh/Projects/golang/src/webassembly/test.wasm
with result
panic: unexpected EOF
goroutine 1 [running]:
main.main()
/Users/gsingh/tmp/life/main.go:81 +0x72c
Maybe related to go-interpreter/wagon#69 ?
Metadata
Metadata
Assignees
Labels
go modulesIssues related to Go 1.11 WebAssembly module support.Issues related to Go 1.11 WebAssembly module support.