←back to thread

159 points mpweiher | 1 comments | | HN request time: 0.207s | source
Show context
regularfry ◴[] No.43672109[source]
This was 2016. Is it all still true? I know things will be backwards compatible, but I haven't kept track of what else has made it into the toolbox since then.
replies(5): >>43672204 #>>43672264 #>>43672270 #>>43672320 #>>43672419 #
sapiogram ◴[] No.43672264[source]
Absolutely nothing has changed at the language level, and for using channels and the `go` keyword directly, there isn't really tooling to help either.

Most experienced Golang practitioners have reached the same conclusions as this blog post: Just don't use channels, even for problems that look simple. I used Go professionally for two years, and it's by far the worst thing about the language. The number of footguns is astounding.

replies(1): >>43699754 #
1. pdimitar ◴[] No.43699754[source]
Okay, but what do you use then?