cat /dev/brain

Hello World

First Blog Post

Well, I never really had a blog before, so I guess the best way to start one is how you would start a programming language, with a simple 'Hello World!'. I guess this will be an area for interesting [1] things I find and do.

I'll probably use this to replace the grimoire that I have since I vastly prefer using reStructuredText (reST) to straight HTML when given the option. Another bonus to using this is that pelican uses pygments to do code block highlighting so I don't have to worry as much about prettify possibly missing something that it should be highlighting.

Code-test

def concat(sep, *args):
    return sep.join(args)
#include <stdio.h>

int main(int argc, char** argv){
    puts("Hello World\n");
    return 0;
}
[1]interesting by my standards