C Sharp for Beginners/Introduction
Appearance
class HelloWorldProgram
{
public static void Main()
{
System.Console.WriteLine("Hello, world!"); // prints some text on to the screen
System.Console.ReadKey(); /* waits for the user
to press a key
*/
}
}