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