// The `Language` enum has a lot of functionality so you can create a `Language` from all sorts of different user inputs.
// You can return a `&str` with the language's name in English using `as_pretty()`, or the language's code using `as_code()`.
// `Language` also implements `FromStr` so you can create a `Language` using text like "en", or "English" (case doesn't matter). You can do this by either using `Language::from()` or `.parse::<Language>()`.
use Language;