/* Author: James Tam Version: October 19, 2015 */ public class Driver { public static void main(String [] args) { Person bob = new Person(); bob.doPersonStuff(); System.out.println(); Hero clark = new Hero(); clark.doPersonStuff(); clark.doHeroStuff(); } }