RBE custom types enum c-like

cat-town
Dan Buch 3 years ago
parent 30ef5d8c91
commit cbcf9ce5fc
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

@ -0,0 +1,21 @@
#![allow(dead_code)]
enum Number {
Zero,
One,
Two,
}
enum Color {
Red = 0xff0000,
Green = 0x00ff00,
Blue = 0x0000ff,
}
fn main() {
println!("zero is {}", Number::Zero as i32);
println!("one is {}", Number::One as i32);
println!("roses are #{:06x}", Color::Red as i32);
println!("violets are #{:06x}", Color::Blue as i32);
}
Loading…
Cancel
Save