public class Person {
    // private field
    private int myAge;

    // public methods

    // constructor
    // initialize the person to be 10 years old
    public Person() {
	int myAge = 10;
    }

    // age
    public int age() {
	return myAge;
    }
}
