1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-12-12 11:14:55 +02:00
rustlings/exercises/enums/enums1.rs

17 lines
320 B
Rust
Raw Normal View History

2019-10-29 05:49:49 +02:00
// enums1.rs
// No hints this time! ;)
2019-10-29 05:49:49 +02:00
// I AM NOT DONE
2019-10-29 05:49:49 +02:00
#[derive(Debug)]
enum Message {
// TODO: define a few types of messages as used below
}
fn main() {
println!("{:?}", Message::Quit);
println!("{:?}", Message::Echo);
println!("{:?}", Message::Move);
println!("{:?}", Message::ChangeColor);
}