/**
* The HelloApplication.java program prints a string to the console. 
* @author
* @version
*/
public class HelloApplication{

   public static void main(String[] args){
     System.out.println("Hello World Application!");
   }
}

