22 lines
368 B
Rust
22 lines
368 B
Rust
#![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);
|
|
}
|