Hello World

This is the first post. We wanted to make it memorable.. here are a few ways you can say hello world: Java:
1 public class HelloWorld {
2
3     public static void main(String args[]) {
4         System.out.println("Hello World");
5     }
6
7 }
8
9
Groovy:
1 def name='World'
2
3 println "Hello $name!"
C++:
1 int main(int argc, char** argv) {
2     cout << "Hello World";
3     return (EXIT_SUCCESS);
4 }
Python+S60:
1 import appuifw
2
3 data = u"World"
4 appuifw.note(u"Hello " + data, "info")