Thursday, November 29, 2007

Hello World

Not a very original title or subject for my first post, but I wanted to test out Jeff Atwood's FormatToHtml macro. I plan on making lots of use of it in future posts as I write about some projects I've been working on.

using System;

namespace HelloWorld
{
   
class Program
    {
       
static void Main(string[] args)
        {
           
Console.WriteLine("Hello World");
        }
    }
}