Saturday, February 10, 2007

Hello World!!!

Hello World!!!,


main = putStrLn(“Hello world!!!”)


...

class Hello {
public static void main(String[] a) {
System.out.println(“Hello World!!!”);
}
}


...

:- writeln('Hello, world!').

...

I was thinking that the best way to start this blog was to show several Hello World versions for several programming languages. But it seems that there’re several really serious attempts to collect this information .

By looking at the wikibooks: List of hello world programs you can find a lot of HelloWorld programs from more traditional languages such as Pascal or C to something like PostScript or PDP-8 assembler!.

Very interesting!