Step 1 : ARM 4.0 Java Hello World example

Description

Here is the very simple plain

hello world
Java program.

Code

1: 
2: public class HelloWorld  {
3: 
4:     public static void main(String argv[]) throws Exception {
5: 
6:         System.out.println("Hello world!");
7:         System.exit(0);
8:     }
9: }