|
|
|
|
|
by dhconnelly
5074 days ago
|
|
Go doesn't "lack error-handling." They're referring to the fact that Go doesn't have exceptions; you check return codes to detect and handle errors. For some this is tedious, but has advantages (mentioned in the article) with respect to understanding an entire program. |
|
This requires some flow analysis, but brings real benefit and safety.