From d3416252d10d0d6b1c1d8f387001de0de6c44624 Mon Sep 17 00:00:00 2001 From: ricky barrette Date: Sun, 16 Jan 2011 20:17:00 +0000 Subject: [PATCH] made a test class to print hello world --- test/src/Test.java | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 test/src/Test.java diff --git a/test/src/Test.java b/test/src/Test.java new file mode 100644 index 0000000..a662835 --- /dev/null +++ b/test/src/Test.java @@ -0,0 +1,31 @@ +/** + * Test.java + * @date Jan 16, 2011 + * @author ricky barrette + * @author Twenty Codes, LLC + */ + +/** + * + * @author ricky barrette + */ +public class Test { + + /** + * Creates a new Test + * @author ricky barrette + */ + public Test() { + // TODO Auto-generated constructor stub + } + + /** + * @param args + * @author ricky barrette + */ + public static void main(String[] args) { + // TODO Auto-generated method stub + System.out.print("Hello World"); + } + +}