Skip to content

Commit

Permalink
Merge pull request #2103 from senekor/senk/kvuzvzqqkskk
Browse files Browse the repository at this point in the history
Remove redundant enum definition task
  • Loading branch information
mo8it authored Sep 16, 2024
2 parents 2894f3c + 9a25309 commit 64b2f18
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion exercises/08_enums/enums3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 64b2f18

Please sign in to comment.