Initial commit

This commit is contained in:
2025-09-10 20:27:38 +00:00
commit 23919b074a
9 changed files with 325 additions and 0 deletions

15
play.py Normal file
View File

@@ -0,0 +1,15 @@
from yahtzee import Yahtzee
from yahtzee_goals import (
GoalOnes,
GoalTwos,
GoalThrees,
)
goals = [
GoalOnes(),
GoalTwos(),
GoalThrees(),
]
game = Yahtzee(goals)
game.play()