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(); }
static void Main(string[] args) { Console.WriteLine("Hello World!"); AnotherProgram.printText(); AyyLmao.greetEarthlings(); }