made a test class to print hello world
This commit is contained in:
31
test/src/Test.java
Normal file
31
test/src/Test.java
Normal 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");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user