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