8 ms·
The standard library
by bigato 7y ago
The standard library
- monocasa 7y agoI 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.
- sagichmal 7y agostdlib 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.
- 0xFACEFEED 7y agoThis 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).