refuse - a mini-proposal for conditional returns. This is an alternative proposal for try, check, check/handle.
So we want to simplify things like:
1: err, thing := newThing(name)
2: if err != nil {
3: return nil, err
4: }