Q:

Rust program to create a simple enum

0

In this program, we will create an enum with two constants. Then we will access the enum constant and print them.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now