Implmented the contructor

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-03-02 11:05:19 -05:00
parent aa0cfeffe0
commit b9bf0471c9

View File

@@ -17,7 +17,9 @@ public class Main {
* @author ricky barrette
*/
public Main() {
// TODO Auto-generated constructor stub
System.out.print("this is a test");
System.out.print("MORE OUTPUT!!!");
System.out.print("EVEN MORE OUTPUT!!!");
}
/**
@@ -26,9 +28,6 @@ public class Main {
* @author ricky barrette
*/
public static void main(String[] args) {
System.out.print("this is a test");
System.out.print("MORE OUTPUT!!!");
System.out.print("EVEN MORE OUTPUT!!!");
new Main();
}
}
}