//******************************************************************* // testLincoln.java Author: Lewis and Loftus // // Demonstrates the basic structure of a Java application //******************************************************************* public class TestLincoln { //--------------------------------------------------- // Calls class to print a presidential quote //--------------------------------------------------- public static void main(String[] args) { Lincoln example = new Lincoln(); example.quote(); } }