# Option --- A 128bit status value pair, cannot be stored. An option represents not having a value is a possibility ```text Option[TYPE] ``` # Default ```text x : // something that returns an option // x is the value from the option ``` If option is none an error is thrown # Use with `Empty` qualifier If the option is assigned to a type with `Empty` an error will not be through if the option is none # Matching ```text # ... { .some { arg; ... }[arg] .nome { ... } } ``` ## .some ## .none # Return ## \`some ## \`none