Day Type
Define an enum called Day with seven variants: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, and Sunday.
Create a variable set to Day::Saturday and use match to print:
SaturdayorSunday=> Weekend- All other days => Weekday
Hint: You can match multiple variants with | like this: Day::Saturday | Day::Sunday => ...
Expected output:
Weekend
rust
fn main() {
}