//File: HelloWorld.cs //Purpose: send a message to the user // prove that a program can be created, // compiled, and executed. using System; class Program { static void Main() { Console.WriteLine("Hello World!"); } // end Main } // end Program