RosettaCodeData/Task/Enumerations/Rust/enumerations.rust

16 lines
226 B
Text
Raw Permalink Normal View History

2014-04-02 16:56:35 +00:00
enum Fruits {
Apple,
Banana,
Cherry
}
2015-11-18 06:14:39 +00:00
enum FruitsWithNumbers {
Strawberry = 0,
Pear = 27,
}
fn main() {
// Access to numerical value by conversion
println!("{}", FruitsWithNumbers::Pear as u8);
}