singleton-demo.py/test.py

9 lines
190 B
Python
Raw Normal View History

2023-06-29 17:10:46 +02:00
'Erstellt ein neues Game. Wie wird es wohl heissen?'
from game import Game
def print_new_game():
'Erstellt ein neues Game und printet den Namen.'
y_game = Game()
print(y_game)