Hello World!

Hi, my name is Adam and this is a blog linked to the SeeSharp Website

C#

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

JavaScript

// the hello world program
console.log('Hello World');