Saturday 5 September 2009

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 {23     public static void main(String args[]) {4         System.out.println("Hello World");5     }67 }89
Groovy:
1 def name='World'23 println "Hello $name!"
C++:
1 int main(int argc, char** argv) {2     cout << "Hello World";3     return (EXIT_SUCCESS);4 }
Python+S60:
1 import appuifw23 data = u"World"4 appuifw.note(u"Hello " + data, "info")