|
|
|
|
|
by aliasxneo
1073 days ago
|
|
The typical answer is that Go doesn't allow you to not address values returned from a function. So, to ignore an error, you'd typically have to write: result, _ := myfunc() That being said, I most certainly prefer the approach that Rust takes to this problem. |
|