Animal Sound
Define an enum called Animal with four variants: Cat, Dog, Cow, and Duck.
Create a variable set to Animal::Duck and use match to print each animal's sound:
Cat=> MeowDog=> WoofCow=> MooDuck=> Quack
Expected output:
Quack
rust
fn main() {
}