ext-daniyalov-dg 49cb2480e7 made some tasks
2023-11-16 10:10:52 +03:00

33 lines
565 B
Rust

// enums2.rs
//
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a
// hint.
#[derive(Debug)]
enum Message {
Move {x: i32, y: i32},
Echo(String),
ChangeColor(i32, i32, i32),
Quit
}
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();
}
}