Error handling in Go – DEV Community
Each programming language has it’s own way of dealing with errors. Popular languages such as JavaScript, Java, C#, and Python choose to use Exceptions to indicate something went wrong at runtime. Other languages, such as Go and Rust, choose to handle errors as values instead, using another paradigm that at first can be odd when…
