Monday, September 27, 2010

Hello world

using System;
using System.Collections.Generic;
using System.Text;

namespace Hello
{
/*
* this is a hello world program
* it doesn't do much
* steve conger 9/27/2010 */
/// <summary>
///
/// </summary>
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello all you Martians");
Console.ReadKey();
}//end main
}//end class
}//end namespace

No comments:

Post a Comment