static void Main(string[] args)
        {
            Console.WriteLine("Maximize the window and press enter to view the scores!!");
            Console.ReadLine();
            var filename = args[0];
            var lines    = File.ReadAllLines(filename);
            var game     = Game.FromLines(lines);

            game.Print();
            Console.WriteLine("Thank you! Press enter to exit from the window.");
            Console.ReadLine();
        }