/**
 * Demonstration of package scope.  This program lives in the
 * "unnamed" package and, thus, has access to anything declared with
 * package scope but no explicit package declaration (e.g., a
 * constructor with no access modifier given).
 *
 * @author Terran Lane
 * @version 1.0
 */
public class demo1 {
  public static void main(String[] args) {
    MondoHashTable t=new MondoHashTable();
    System.out.println("t.size()=" + t.size());
  }
}
