|
|
|
|
|
by _0w8t
2885 days ago
|
|
It is interesting that neither the talk nor the questions from the audience rise the question of the error handling. In Go returning an error implies that the caller will need to add 3 lines of the source for each call to propagate the error. This is really ugly. Rust managed to reduce that source overhead down to the single extra ? character while keeping all the benefits of explicit error handling. I wish Go gets something similar. |
|