|
|
|
|
|
by cpuguy83
3509 days ago
|
|
The only thing bad about Go's version (other than the usual repetitive code complaints) is it's easy to ignore (ie forget) to handle an error. And really much of the error handling in Go is by convention (ie, `if err != nil { return nil, err }`) rather than actual language semantics. Honestly it would be nice to be able to always return the error (without special macros or symbols) if there is one unless I've explicitly setup a handler block. |
|