CS1 Standard Demo Page

The following text was written to the standard output stream when the PersonSpecification program was executed from IntelliJ.


/*
 *Person functionality
 */
package people;


public interface PersonSpecification {
    public String firstName();
    public String lastName();
    public int month();
    public int day();
    public int year();
    public String initials();
    public boolean isBoomer();

}