ID: 1001 - Hello world
Posted by layonman98 on Sun Feb 21 00:24:57 UTC 2010. Language csharp

using System;

public class Example{
  public static void Main( string[] args ){
    Console.WriteLine( "Hello, world!" );
  }
}