made a test class to print hello world

This commit is contained in:
2011-01-16 20:17:00 +00:00
parent 4b81645c7d
commit d3416252d1

31
test/src/Test.java Normal file
View File

@@ -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");
}
}