7 lines
82 B
Dart
7 lines
82 B
Dart
class BowlingGame {
|
|
void roll(int pins) {}
|
|
|
|
int score() {
|
|
return 0;
|
|
}
|
|
}
|