The source code to create a simple enum is given below. The given program is compiled and executed successfully.
// Rust program to create
// a simple enum
#[derive(Debug)]
enum Gender {
female,male
}
fn main() {
let male = Gender::male;
let female = Gender::female;
println!("{:?}",male);
println!("{:?}",female);
}
Output:
male
female
Explanation:
In the above program, we created an enum Gender and function main(). The enum Gender contains two constants female and male.
In the main() function, we accessed the value of enum constants and printed them.
Program/Source Code:
The source code to create a simple enum is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created an enum Gender and function main(). The enum Gender contains two constants female and male.
In the main() function, we accessed the value of enum constants and printed them.
need an explanation for this answer? contact us directly to get an explanation for this answer