7 ms·
So this is why the golang community prefers: for c := range(ns) { // some blah }
by bulte-rs 11y ago
So this is why the golang community prefers:
for c := range(ns) {
// some blah
}
- rakoo 11y agoThe golang community likes being safe: a, err := doFirstThing() if err != nil { return err } b, err := doSecondThing(a) if err != nil { return err } c, err := doThirdThing(b) if err != nil { return err } until your keyboard keys go off. (and I'm a happy gopher myself)