Hacker News new | ask | show | jobs
by monocasa 2309 days ago
I get told all the time about how the standard library isn't a great example of go code, because of the backwards compat they have to do.
1 comments

stdlib was once an exemplar of good, idiomatic Go code, but a lot of the idioms it uses haven't withstood the test of time, and it's less and less appropriate as an example.
This is true, but it's still worth poking around for pre-existing solutions to problems. My editor will jump to stdlib definitions so I've learned a lot just diving into various stdlib packages (I remember the JSON parser being a good one).