Posts

Showing posts from October, 2017

hello world

using System; namespace HelloWorld { class Hello { static void Main ( ) { Console.WriteLine( "Hello World!" ); // Keep the console window open in debug mode. Console.WriteLine( "Press any key to exit." ); Console.ReadKey(); } } }