Hi,
I have just upgraded ye olde version of Go (about 6-8 months old) to Go 1, and I am now, very, very stuck.
I am used to the following for getting an program to a usable state:
- Stick source code into 6g
- Stick output from 6g into 6l
- Tada, shiny shiny executable
- ./awesome-program
After updating to 1.0 and beyond, these commands seem to be replaced with the "go" command, which as been winding me up for the last hour
I was attempting to "go install
code.google.com/p/go.net" to install both the SPDY and WebSocket packages, but this command also seems to be failing, when according to the docs, I'm doing everything by the book
All in all, I have two questions:
- What is the replacement for "code => 6g => 6l => executable"?
- How on earth do I install go.net?
Thanks,
Luke