//******************************************************************* // Lincoln.java Author: Lewis and Loftus // // Demonstrates the basic structure of a Java class //******************************************************************* public class Lincoln { public static void main(String[] args) { //--------------------------------------------------- // Calls method to print a presidential quote //--------------------------------------------------- quote(); } private static void quote() { System.out.println("A quote by Abraham Lincoln:"); System.out.println("whatever you are, be a good one."); } }