tdd-katas/lib/bowling_game.dart
2026-02-10 11:19:34 +07:00

9 lines
No EOL
136 B
Dart

class BowlingGame {
void roll(int pins) {
throw UnimplementedError();
}
int score() {
throw UnimplementedError();
}
}