Monday, October 09, 2006

Hello World for ZX Spectrum lovers

When I was a young lad, there was nothing I liked more than going down to my local Dixons after school and typing my very own Hello World application into the nearest ZX Spectrum. But the Hello World apps I see today just don't match up to the beauty and elegance of that original version, so I've written one for C#

using System;

namespace HelloWorld
{
    class App
    {
        [STAThread]
        static void Main(string[] args)
        {
             line10: Console.WriteLine("Doogal is cool!");
             line20: goto line10;
        }
    }
}

Who says goto is evil? I think I might adopt this style for all my applications...

No comments: