GREEN: score() returns hardcoded 0

This commit is contained in:
fiatcode 2026-02-10 11:21:13 +07:00
parent 1f31a68df5
commit 9a22a3e5fe

View file

@ -1,9 +1,7 @@
class BowlingGame { class BowlingGame {
void roll(int pins) { void roll(int pins) {}
throw UnimplementedError();
}
int score() { int score() {
throw UnimplementedError(); return 0;
} }
} }