PersonDemo1.java
1    package people;
2    
3    public class PersonDemo1 {
4    
5        public static void main(String[] args){
6            Person as = new Person("Bob Dylan",5,24,1941);
7            Person wb = new Person("Noomi Rapace",12,28,1974);
8            Person ap = new Person("Nick Paraboo",10,9,1997);
9            Person cg = new Person("Christopher Gayguy", 11, 10,1999);
10           Person dc = new Person("Dominic Comito", 9, 21,2000);
11           Person js = new Person("John Stamos", 8, 19,1963);
12   
13   
14           System.out.println(as);
15           System.out.println(wb);
16           System.out.println(ap);
17           System.out.println(cg);
18           System.out.println(dc);
19           System.out.println(js);
20   
21   
22   
23       }
24   
25   
26   }
27   
28   
29