rustlings/exercises/enums/enums2.rs

29 lines
544 B
Rust
Raw Normal View History

2019-10-28 21:49:49 -06:00
// enums2.rs
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a hint.
2019-10-28 21:49:49 -06:00
// I AM NOT DONE
2019-10-28 21:49:49 -06:00
#[derive(Debug)]
enum Message {
// TODO: define the different variants used below
}
impl Message {
fn call(&self) {
println!("{:?}", self);
2019-10-28 21:49:49 -06:00
}
}
fn main() {
let messages = [
2020-08-10 09:24:21 -05:00
Message::Move { x: 10, y: 30 },
2019-10-28 21:49:49 -06:00
Message::Echo(String::from("hello world")),
Message::ChangeColor(200, 255, 255),
2020-08-10 09:24:21 -05:00
Message::Quit,
2019-10-28 21:49:49 -06:00
];
for message in &messages {
message.call();
}
}