like: ```rust fn do_something() -> Result { try_do_something().unwrap() } fn try_do_something() -> Result { // } ``` Then elsewhere: ```rust do_something(); // panics ```