I haven't been keeping up with Go much these days but is there proper debugger support now? Or is it still a half-broken experience?
Go 2, here we come
51–60 of 534 posts
Re: Go 2, here we come
#52Go 2 Considered Harmful: https://homepages.cwi.nl/~storm/teaching/reader/Dijkstra68.p...
Re: Go 2, here we come
#53Are there really "millions" (plural) of Go programmers?
Sounds like a bit of an overestimate, no?
Re: Go 2, here we come
#54I tried Go a while ago. I was hooked by the performance , the community around it and vendors support ( AWS , Heroku , GCloud etc...) but I got quickly fed up by the awkward package management system, the weird syntax and the horrible idea of $GOPATH, especially on Windows. Haven’t tried it since. Hope lots of this change to make the language more welcoming for Newcomers to the language.
EDIT: Removed a parenthetical that was based on a misreading of the parent.
Re: Go 2, here we come
#55I’m hoping that https://github.com/golang/go/issues/19623 will come through, and we’ll get a native “true integer” type (and hopefully a rational one as well, though maybe this is pushing it a bit). This is really something that should be implemented at the language level, so that “int” can become a true integer, yet still remain efficient in many cases. It is bizarre to me that languages boasting built-in language-l…
This was one thing COBOL got right: built in support for a DECIMAL data type.
(Which is why, incidentally, nothing made in this millennium supports it.)
Re: Go 2, here we come
#56I haven't been keeping up with Go much these days but is there proper debugger support now? Or is it still a half-broken experience?
Re: Go 2, here we come
#57I tried Go a while ago. I was hooked by the performance , the community around it and vendors support ( AWS , Heroku , GCloud etc...) but I got quickly fed up by the awkward package management system, the weird syntax and the horrible idea of $GOPATH, especially on Windows. Haven’t tried it since. Hope lots of this change to make the language more welcoming for Newcomers to the language.
Actually, the issues you mention are already fixed by Go modules. EDIT: Removed a parenthetical that was based on a misreading of the parent.
Re: Go 2, here we come
#58Re: Go 2, here we come
#59Re: Go 2, here we come
#60I tried Go a while ago. I was hooked by the performance , the community around it and vendors support ( AWS , Heroku , GCloud etc...) but I got quickly fed up by the awkward package management system, the weird syntax and the horrible idea of $GOPATH, especially on Windows. Haven’t tried it since. Hope lots of this change to make the language more welcoming for Newcomers to the language.