package project1; /** *
Title: Sample classes
*Description: My first classes
*Copyright: Copyright (c) 2003
*Company: Cal State LA
* @author Jenny Chang * @version 1.0 */ public class testDriver { public static void main(String[] args) { Person p = new Person(); p.setAge(18); p.setFirstName("Maria"); p.setLastName("Puentes"); System.out.println(p.getFirstName() + " " + p.getLastName() + " is " + p.getAge() + " years old."); Student student1 = new Student("Arnold"); student1.addCourse("CS 202"); student1.addCourse("Math 207"); student1.addCourse("Phys 201"); student1.addCourse("Phil 201"); student1.listCourses(); } }