//******************************************************************* // Lincoln.java Author: Lewis and Loftus // // Demonstrates the basic structure of a Java class //******************************************************************* public class Lincoln { private void quote() { System.out.println("A quote by Abraham Lincoln:"); System.out.println("whatever you are, be a good one."); } }