|
|
|
|
|
by rwiggins
579 days ago
|
|
I felt the same way initially, but the language has grown on me. The turning point was writing a lot of Go, like full-time project work for a few months. But as I've gotten older, I've started striving more and more for simplicity above all else, especially in systems design (disclaimer: I'm an SRE). Go is pretty good at being simple. There are some things that still annoy me a whole bunch, though. Like - just one example - `fmt.Errorf` not being a first-class syntactic construct (or the difference between `%v` and `%w` in `fmt.Errorf`). |
|