diff --git a/launcher.py b/launcher.py index c922d71..23d6915 100644 --- a/launcher.py +++ b/launcher.py @@ -4,4 +4,5 @@ result_list = [] for i in range(number_of_launches): result_list.append(main.main()) for result in result_list: - print("Game " + result[0] + " had a score of: " + str(result[1])) \ No newline at end of file + print("Game " + result[0] + " had a score of: " + str(result[1])) + input("Press Enter to exit") \ No newline at end of file