C#: Hello World!
This is the “Hello World! program that every programmer learns in their first 5 minutes of their schooling. Compile this as a console project to test if your compiler is working.
ConsoleApplication1 { class Program { static void Main (string [] args) { Console.WriteLine ("Hello World!"); Console.ReadKey (); } } }
Recent Comments