public interface Person {
  public boolean equalTo (Person other); // is this the same person?
  public String getName(); // get this person's name
  public int getAge(); // get this person's age
}