Name for error propagation keyword?
I like the Rust way of error handling. For those unfamiliar, there is a Result enum which can be Ok or Err. This is returned to indicate success or failure (so no `throw ` or bare booleans/integers).
In many cases, a failure needs to be propagated se...