Files
examples/Java/HelloWord.java
2012-01-22 16:14:32 -05:00

16 lines
260 B
Java

/**
* this is a test class yay!
* @author ricky.barrette
*/
class HelloWorld{
/**
* this is the main method of the class
* @param args
* @author ricky.barrette
*/
public static void main(String[] args){
System.out.println("Hello World Bitch!");
}
}