// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class ShowArgs {
  public static void main(String args[]) {
    for(int i=0; i<args.length; i++) 
      System.out.println("Arg " + i + " is " + args[i]);
  }
}

