
/**
 * CommandArgs.java
 *
 *
 * Created: Wed Apr 11 11:43:52 2001
 *
 * @author <a href="mailto: "Stuart C. Shapiro</a>
 * @version
 */

public class CommandArgs {
    public CommandArgs (){
	
    }

    /**
     * A demonstration of the java command line arguments.
     */
    public static void main (String[] args) {
	
	for (int i=0; i<args.length; i++) {
	    System.out.println(args[i]);
	} // end of for (int i; i<args.length; i++)
	
    } // end of main ()
    
}// CommandArgs
