/* *****************************************************************************
 *  Name:
 *  NetID:
 *  Precept:
 *
 *  Description:  A simple Person class to illustrate objects.
 *
 **************************************************************************** */

public class Person {
    // instance variables
    private String name;      // person's name
    private int age;          // person's age in years


    // constructor for Person
    public Person(String bornName) {
        // initialize instance variables

    }

    // increments a person's age 
    public void birthday() {

    }

    // returns the age in years of this person
    public int howOld() {
        // fix this
        return 0;
    }

    // returns a String representation of a Person
    public String toString() {
        // fix this
        return "";

    }

    // main test code
    public static void main(String[] args) {
        // create some Person objects

    }


}