/*====================================================================*/ /* REPLACE THIS BOX WITH THE TEXT IN ident.txt. */ /* REMEMEBER TO REPLACE INFORMATION WITH YOUR OWN NAME AND GTNUMBER */ /*====================================================================*/ public class lab5{ /** * Don't let the stuff you don't understand worry you. * You will understand it all in a couple of weeks * Follow the instructions and you will be okay */ /** * The default constructor has been made private so that this class * cannot be instaniated. The intent is to have a static main that * does everything */ private lab5(){ } /*================================================================*/ /* M A I N M E T H O D */ /*================================================================*/ /** * The starting point of the program. * Prints out a hokey String * * @param argv an array of command line arguments */ public static void main(String Argv[]){ String stupid_string="I like VI personally!\n"; stupid_string+="I was a slacker and now I have to preach the"; stupid_string+="EMACS gospel =(\n"; stupid_string+="This is Fruitcake's first Java program"; System.out.println(stupid_string); } }