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