Sunday, February 20, 2005

Hello! World

using System;

namespace Blogger
{
   class MyBlog
   {
     public static void Main(String[] args)
     {
       //if it is the first blog
       if ( firstBlog )
       {
         Console.WriteLine( "Hello! World" );
       }
     }
   }
}

output:
Hello! World