16 lines
260 B
Java
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!");
|
|
}
|
|
}
|