tdd-katas/lib/bowling_game.dart

7 lines
82 B
Dart

class BowlingGame {
void roll(int pins) {}
int score() {
return 0;
}
}