/**
 * This is just a small demo program to show the hash codes produced from
 * various strings.
 *
 * @author <a href="mailto:terran@cs.unm.edu">Terran Lane</a>
 * @version 1.0
 */
public class GenHashCode {
  public static void main(String[] args) {
    for (int i=0;i<args.length;++i) {
      System.out.println("\"" + args[i] + "\".hashCode()==" +
			 args[i].hashCode());
    }
  }
}
