Hello world

Everything starts with a Hello World doesn't it?

Published on Sunday, 22 July 2018
Estimated read time: a couple of seconds
public class Blog
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Is this thing on?...");
        Console.WriteLine("Press any key to exit.");
        Console.ReadKey();
    }
}

I've never really written a blog and I'm not entirely sure I have anything interesting to say but I think it's good that this is here whenever I think I do.

My writing style is very 'stream of consiousness' which may drive some of you nuts, I'll try to minimize that when writing deep dive technical posts but I'm sure it'll slip in.

My first post (at least) will be about Stubble my performant cross platform renderer for the Mustache templating language.