/* * A simple program that displays some text. * Compile with: "csc hello-world-text.cs" * Run with: "hello-world-text" * * Ben Bederson, January 16, 2002 */ using System; public class HelloWorldText { public static void Main() { Console.WriteLine("Hello world!"); } }