Posted on May 4, 2008 by lklemme
I hadn’t really noticed how often the ‘Hello World’ code is used. It is the same awareness that you have when you learn a new word – suddenly it is everywhere – in conversations, on TV, in books… Well, the same thing seems to be happening with the ‘Hello World’ code. In just the [...]
Filed under: Uncategorized | Tagged: hello world | Leave a Comment »
Posted on May 1, 2008 by lklemme
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 [...]
Filed under: Uncategorized | Tagged: first blog, hello world | Leave a Comment »