rustlings/exercises/enums/enums2.rs
huganardo 7da4ad469a First commit updating my worked solution so far
This commit is mainly to test to see if the readme.md updates when I change it 👍
2023-07-31 15:37:06 +10:00

35 lines
614 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
Move{x: i32,y: i32},
Echo(String),
ChangeColor(u8,u8,u8),
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();
}
}