1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-09 10:26:12 +02:00
rustlings/exercises/enums/enums2.rs
2019-10-28 22:49:49 -05:00

62 lines
676 B
Rust

// enums2.rs
// Make me compile! Scroll down for hints
#[derive(Debug)]
enum Message {
// TODO: define the different variants used below
}
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();
}
}
// Hint: you can create enumerations that have different variants with different types
// such as no data, anonymous structs, a single string, tuples, ...etc