You can unpack Options by using match statements, but it's often easier to
use the ? operator. If x is an Option, then evaluating x? will return
the underlying value if x is Some, otherwise it will terminate whatever
function is being executed and return None.