# Result --- A 128bit value error pair, cannot be stored. A result represents an operation should not fail ```text Result[TYPE] ``` # Default ```text x : // something that returns a result // x is the value from the result ``` If the result is an error, an error is thrown # Matching ```text # ... { .ok { arg; ... }[arg] .error { arg; ... }[arg] } ``` ## .ok ## .error # Return ## \`ok ## \`error