mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-14 11:22:55 +02:00
18 lines
323 B
Rust
18 lines
323 B
Rust
// enums1.rs
|
|
//
|
|
// No hints this time! ;)
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[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);
|
|
}
|