Simple example
Assuming that the "HelloWorld.java" contains the following Java source:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
(For an explanation of the above code, please refer to Gettin...