/* Author : Michael Robinson Program : plClass.java Purpose : This program creates a method called pl() which allows us to type less when we need one line feed in a program. Updated : April 26, 2099 */ public class plClass { //This method saves us time. Instead of exececuting the command //System.out.println(); we just excuted pl(); public static void pl() { System.out.println(); } public static void main( String arg[] ) { //call pl() instead of executing System.out.println(); pl(); }//end public static void main( String arg[] ) }//end public class plClass