mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
17 lines
323 B
Rust
17 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);
|
|
}
|