DEV Community

Discussion on: What simple things annoy you about your favourite programming languages?

Collapse
 
mortoray profile image
edA‑qa mort‑ora‑y

This is one of my core complaints about Go. I'm quite opposed to explicit error handling since ultimately coders will just forget it in places, or not check it correctly. I'm in favour of errors propagating by default, and having a nice option to catch them if you want.

Any repetition is syntax is bad for readability. The intent of the code gets lost in overhead.