// Purpose: display a quotation in a console window public class DisplayTheQuote { // method main(): application entry point public static void main(String[] args) { System.out.print ("The future belongs to those who"); System.out.println (" believe in the beauty of their "); System.out.println ("dreams. Eleanor Roosevelt"); } }