/* * ========================================================== * The 'Peace On Earth' Java application example. * * Written By : David Chancogne October 1996 * ========================================================== */ class Peace { public static void main ( String[] args ) { System.out.println("Peace on Earth!"); } } // end of class Peace.