/**
* Nom du fichier : HelloWorldApp.java
* Desciption : Affiche sur la console "Hello World !"
* Date de dernière modification : 8/03/2010
* Version : 1.0
*/
public class HelloWorldApp {
	public static void main(String[] args){
		System.out.println("Hello World !"); // Display the string.
	}
}
