From r60 to Go 1
gophersays.com
From r60 to Go 1
1–10 of 30 posts
Re: From r60 to Go 1
#2Re: From r60 to Go 1
#3Wow these are significant changes! The entire development process has been cleaned up significantly, and not having to use Makefiles is a significant improvement, as well as default error type. Go team is dedicated to developers and developer process and it will pay off.
Re: From r60 to Go 1
#4Re: From r60 to Go 1
#5Wow these are significant changes! The entire development process has been cleaned up significantly, and not having to use Makefiles is a significant improvement, as well as default error type. Go team is dedicated to developers and developer process and it will pay off.
That and Go reaching a 1.0 release may help me get it considered for some projects at work.
Re: From r60 to Go 1
#6Re: From r60 to Go 1
#7What's wrong with makefiles and why is new Go convention better?
Re: From r60 to Go 1
#8More detailed info here: http://weekly.golang.org/doc/go1.html
Re: From r60 to Go 1
#9Fantastic. I was hoping Makefiles would go away. I hate writing them! More detailed info here: http://weekly.golang.org/doc/go1.html
Re: From r60 to Go 1
#10Looks like Go is cleaning up. Love the language, but I won't commit to writing heavy-duty code in it until it either has sensible union support or sensible generic support. The type system is just too weak right now.
I'm not sure of the value of unions now or ever as it brings what is effectively a compiler decision into user space and allows very unsafe, architecture dependent code to be accidentally written.