/** * A test of the Person class * @author CSC 142 * */ public class PersonUser { public static void main(String[] args) { Person p; p = new Person("Sandra", 28); p.speak(); } }