/**   ArgumentTest: Simple program to display arguments 
 *    passed from the command line
 *
 *  Excute the program with
 *
 *   java ArgumentTest Hello World
 *   java ArgumentTest "Hello World"
 *
 *   to see the effect.
 */

public class ArgumentTest {
    public static void main (String args[]) {

	//              Read the arguments and display them.
	//              args[] is an Array of Strings which.
	
	for(int i = 0; i < args.length; i++) {
	    System.out.println("Argument " + i + " is : " + args[i]);
	}
    }
}
