Archive for October 4th, 2006

Hello World!

Wednesday, October 4th, 2006
C#:
  1. using System;
  2.  
  3. public class Hello {
  4.      public static void Main (string [] args)
  5.      {
  6.           Console.WriteLine ("Hello World");
  7.      }
  8. }