From 9a22a3e5fedd12efbc1a6f11d8ffeeba607cd3c9 Mon Sep 17 00:00:00 2001 From: fiatcode Date: Tue, 10 Feb 2026 11:21:13 +0700 Subject: [PATCH] GREEN: score() returns hardcoded 0 --- lib/bowling_game.dart | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/bowling_game.dart b/lib/bowling_game.dart index 838360e..a900cb8 100644 --- a/lib/bowling_game.dart +++ b/lib/bowling_game.dart @@ -1,9 +1,7 @@ class BowlingGame { - void roll(int pins) { - throw UnimplementedError(); - } - + void roll(int pins) {} + int score() { - throw UnimplementedError(); + return 0; } -} \ No newline at end of file +}