Go 1.11 released
golang.org
Go 1.11 released
1–10 of 51 posts
Re: Go 1.11 released
#2Thanks everyone at golang.
Re: Go 1.11 released
#3Re: Go 1.11 released
#4Release notes > binaries; https://golang.org/doc/go1.11 Thanks everyone at golang.
Re: Go 1.11 released
#5considering it includes the runtime, this isn't a large file compared to images / videos you find on the web today
Re: Go 1.11 released
#6Re: Go 1.11 released
#7Re: Go 1.11 released
#8Information about modules can be found at:
- https://golang.org/cmd/go/#hdr-Preliminary_module_support
- https://github.com/golang/go/wiki/Modules
- https://research.swtch.com/vgo
The wiki - https://golang.org/wiki/WebAssembly - provides information on how to get started with using Wasm with Go.
Re: Go 1.11 released
#9Finally the entire GOPATH nonsense is going away...
Re: Go 1.11 released
#10Finally the entire GOPATH nonsense is going away...
Eh, it wasn’t the best, but it was still better than any other language’s equivalent except for Rust’s. In any case, modules have worked wonderfully for me so far.
I'd say almost any language with project-specific deps folder (e.g. Node, Elm) are better than GOPATH and its module system.
For example, can't just write `import "./util"`. It needs to be fully qualified, every import depending on full project fs hierarchy including even the project user/name on github. This is hilarious when you just want to fork a project from github and get it running.