Hariettemaina f19c9d9552 2nd commit
2022-09-19 16:59:38 +03:00

32 lines
552 B
Rust

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