Files
GTSchoolShit/CS1322/p3/P3.java
2025-06-07 01:59:34 -04:00

48 lines
1.0 KiB
Java

/**
* <PRE>
* P3.java
*
* Revisions: 1.0 Oct. 16, 2002
* Created the P3 class
* 1.1 Oct. 16, 2002
* Compiled, Finished, Done
*
* </PRE>
*
* Collaboration Statement:
* I worked on the homework assignment alone, using only
* course materials.
*
* Created with JCreatorLE, some indents are off when viewed through notepad
* or EMACS
*
* @author <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
* @version Version 1.1, Oct. 16, 2002
*/
public class P3 {
/**
* Debugging main for class P3.
* This method will rigorously test my code.
*
* <br><br>
* @param args a String array of command line arguments.
*/
public static void main(String[] args) {
Manager manager = new Manager();
boolean truthitude = true;
do{
truthitude = manager.managerActions();
}while(truthitude != false);
System.out.println(P3Type.GOOD_BYE);
}// end of main(String[] args)
}// end of class P3