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