Remove redundant enum definition task

The exercise enums2.rs already contains a task where an identical enum
has to be defined.
This commit is contained in:
Remo Senekowitsch 2024-09-11 16:47:27 +02:00
parent 2b7caf6fcb
commit 9a25309c1c

View file

@ -4,7 +4,11 @@ struct Point {
}
enum Message {
// TODO: Implement the message variant types based on their usage below.
Resize { width: u64, height: u64 },
Move(Point),
Echo(String),
ChangeColor(u8, u8, u8),
Quit,
}
struct State {