|
|
|
|
|
by alphaalpha101
3218 days ago
|
|
That's exactly what you have to do in Rust anyway though. Except instead of just writing `throws SomeError` in the declaration line of the function, you have to annotate virtually every line of your function with `?` and wrap the return line in `Ok(...)`. |
|