DEV Community

Cover image for Syntax highlighting test
Adam K Dean
Adam K Dean

Posted on • Updated on

Syntax highlighting test

Originally posted on August 8th, 2010 (more info)

Note: for the last decade I've moved blogs about 7 times. From blogspot, to my own blog, to another, to another, from platform to SQL to JSON to YAML and so on. Every time I've moved, I've always brought this first blog post with me. So while it doesn't serve to help folks much, it's kinda special to me. So here it is.

Just testing the syntax highlighter with this blog.

using System;

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

Oldest comments (0)