mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
357 B
17 lines
357 B
3 years ago
|
// enums1.rs
|
||
|
// Make me compile! Execute `rustlings hint enums1` for hints!
|
||
|
|
||
|
// 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);
|
||
|
}
|