PersonDemo1.java
package people;
import java.lang.String;
public class PersonDemo1 {
    public static void main(String[] args) {
    //Six People
        Person bd = new Person("Bob Dylan",5,24,1941);
        Person nr = new Person("Noomi Rapace",12,28,1974);
        Person fs = new Person("Frank Sinatra",12,2,1915);
        Person pw = new Person("Pharrell Williams",4,5,1973);
        Person jl = new Person("Jay Leno",4,28,1950);
        Person rdj = new Person("Robert Downey Jr",4,6,1965);
    //Six People to SOS
        System.out.println(bd + " " + bd.initials() + " " + bd.isBoomer());
        System.out.println(nr + " " + nr.initials() + " " + nr.isBoomer());
        System.out.println(fs + " " + fs.initials() + " " + fs.isBoomer());
        System.out.println(pw + " " + pw.initials() + " " + pw.isBoomer());
        System.out.println(jl + " " + jl.initials() + " " + jl.isBoomer());
        System.out.println(rdj + " " + rdj.initials() + " " + rdj.isBoomer());
    }

}