This is a copy of my first blog post created on Wordpress
Following a comment I made regarding the controversy about the applicability to Wordpress themes of GNU GPL (the license under which Wordpress is distributed), I was invited to switch to Wordpress by its creator. It's hard to say no...
So I created a Wordpress account and a blog. Wordpress creates a first blog entry for you. The title of this first post is "Hello World!". For programmers, "Hello World" is a very special thing. It is this small little program that prints "Hello World" on the screen. In C, it looks like this:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello world!\n");
}
The output of this wonderful little program on the console is the following:
Hello world!To achieve the same result with my own programming language, XL, you'd write something like:
use XL.UI.CONSOLE WriteLn "Hello world!"The Hello World program is a small benchmark of what a programming language can do. For example, the team behind Google's Go programming language used Hello World to highlight their support for internationalization.

0 comments:
Post a Comment