Wednesday, February 26, 2014

HelloWorld!: (Wk-1) Jan 7, 14

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

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

        }
    }
}

No comments:

Post a Comment