Hello World! – Programming Adventures

Hello world

using System;

namespace HelloWorld
{
    internal class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Console.WriteLine("Blogging is cool!");

            Console.Read();
        }
    }
}

 

Here is the first post on my blog.

I am planning to use this space to post my learning adventures in programming.

Starting soon I will be making some posts as I work through a Roguelike game tutorial but porting it over to C# using Unity.

 

This may be pretty rough. I do not pretend to be a writer. Bear with me and hopefully someone will find some stuff I post in here pretty cool.

 

I’ll be following along with other Redditors here:

Posted by dtorruellas

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.