The thoughts, rants, tips, tricks, stories, truths, and lies of Jordan Irwin

June 25, 2013

Hello World, again.

Here we go again…

using System;

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