Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            // WHY TORTURE US WITH NONSTATICS
            AnotherProgram ap = new AnotherProgram();

            // WHY TORTURE US WITH NONSTATICS
            TheClass tc = new TheClass();

            Console.WriteLine("Hello World!");
            ap.printText();
            tc.theMethod();
        }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     Console.WriteLine("Hello World!");
     AnotherProgram.printText();
     AyyLmao.greetEarthlings();
 }