2023-02-25 19:28:08 +02:00

34 lines
636 B
Rust

// enums2.rs
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a hint.
#[derive(Debug)]
enum Message {
// TODO: define the different variants used below
Quit,
Echo(String),
Move {
x : u32,
y : u32,
},
ChangeColor(u32,u32,u32),
}
impl Message {
fn call(&self) {
println!("{:?}", self);
}
}
fn main() {
let messages = [
Message::Move { x: 10, y: 30 },
Message::Echo(String::from("hello world")),
Message::ChangeColor(200, 255, 255),
Message::Quit,
];
for message in &messages {
message.call();
}
}