dick #1

Merged
Adrien DICK merged 5 commits from dick into main 2025-11-27 11:40:58 +01:00
Showing only changes of commit b39bf8b726 - Show all commits

View File

@@ -11,7 +11,7 @@ public enum Move {
case ROCK -> other == SCISSORS;
case PAPER -> other == ROCK || other == WELL;
case SCISSORS -> other == PAPER;
case WELL -> other == PAPER;
case WELL -> other == ROCK || other == SCISSORS;
};
}
}