First Post! First post into the world of blogging Beginner Jekyll

So…hello! This is my first step into the wonderful world of the blogging so please forgive me if this isn’t the most fluent of blog posts.

To be honest, in this post there isn’t much for you to see. This will serve me more than it will you as I’ll be testing some of the neat features that Jekyll, Github pages and Markdown provide.

Style Guide

Code block:

/**
 * Foo
 */
class foo() {
    /**
     * Foo - bar
     *
     * @return void
     */
    function bar() {
        return;
    }
}

$foo = new foo();

$foo->bar();