From b9bf0471c95980ea3cd69e6de8025bb209067b8e Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Fri, 2 Mar 2012 11:05:19 -0500 Subject: [PATCH] Implmented the contructor Signed-off-by: Ricky Barrette --- test/src/com/test/Main.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/test/src/com/test/Main.java b/test/src/com/test/Main.java index 1c9e30b..df987c1 100644 --- a/test/src/com/test/Main.java +++ b/test/src/com/test/Main.java @@ -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(); } - -} +} \ No newline at end of file