go-is-not-good
go-is-not-good copied to clipboard
A curated list of articles complaining that go (golang) isn't good enough
Fresh off the printing press: https://fasterthanli.me/articles/lies-we-tell-ourselves-to-keep-using-golang
https://medium.com/swlh/hypocritical-gophers-cc7f06da3f28
https://jesseduffield.com/Gos-Shortcomings-1/
I think they should be grouped together.
Please consider adding the following article "Why I’m So Frustrated With Go" (2017-04-06): https://hackernoon.com/why-im-so-frustrated-with-go-97c0c4ae214e
https://www.toptal.com/go/4-go-language-criticisms I think it is written in 2017 based on the fist comment date...
``` func MyFunc(obj interface{}) { obj = "123" fmt.Println(obj) } func main() { var s string = "hello" MyFunc(s) fmt.Println(s) MyFunc(&s) fmt.Println(s) } ``` The parameter of `interface{}` can be...