I am trying to work out why should we inform the JVM with exit status values, like 0 or 1.
What is the need?
For example:
class sample
{
public static void main (String args[])
{
System.out.println("Calling System.exit()");
System.exit(0);
}
}