/* Author: James Tam Version: June 4, 2015 Learning concepts: * Creating the first Object-Oriented program in Java */ public class Driver { public static void main(String [] args) { Person aPerson = new Person(); aPerson.sayHello(); } }