/** * This class shows the basic structure of a Java application * * @author Lewis/Loftus modified by alchambers * @version sp17 */ public class Lincoln{ /* * Execution begins in the main method */ public static void main(String[] args){ // Print out some text to the console System.out.println("A quote by Abraham Lincoln:"); System.out.println("Whatever you are, be a good one."); } }