Hacker News new | ask | show | jobs
by rigelbm 500 days ago
Error handling is really not an issue that needs fixing in Golang. That being said, I wish Golang had an assert key word as a shortcut to "if cond { panic }". A lot of those "if err != nil" in the wild should really just be assertions.
1 comments

There are 0 times I’d want to panic in go code in production services.