DEV Community

Discussion on: I don't get the point of Golang - That's why I need help

Collapse
 
forestdev profile image
Dominykas Bartkus

I always find the error handling argument weird. What do you guys do with your errors? I'm all for optimistic programming, but I've worked on so many projects where you have no luxury of just bubbling your errors up top, as in the end you'll end up having to still write a nasty block of code to actually handle those errors. I feel being explicit with every error just makes it easier to debug.