Hello world!

OK. So everyone’s first blog entry has “Hello World” as the default entry; every first program does too for that matter.
I couldn’t resist, so I looked up the original C program code.
#include < stdio.h>
void main()
{
printf(“\nHello World\n”);
}
Isn’t it beautiful? Even elegant?
Code is poetry.
At least that’s what I’ve heard that they [...]