Main function to play the game.
()
| 37 | |
| 38 | |
| 39 | def main(): |
| 40 | """Main function to play the game.""" |
| 41 | user_choice = get_user_choice() |
| 42 | computer_choice = get_computer_choice() |
| 43 | print(f"Computer chose: {computer_choice}") |
| 44 | print(decide_winner(user_choice, computer_choice)) |
| 45 | |
| 46 | |
| 47 | if __name__ == "__main__": |
no test coverage detected