Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to fun fact Country Explorer.");

            CountryController cc = new CountryController();
            bool run             = true;

            while (run)
            {
                cc.Contininent();
                run = Continue();
            }
        }