Ok, I need to actually work out an idiomatic way f...
# development
a
Ok, I need to actually work out an idiomatic way for us to do Results, because I'm getting sick of writing the code:
Copy code
match foo() {
  Ok(_) -> {},
  Err(err) -> return Err(err.description().to_string()),
}