public class HelloWorld{

  public static void main(String[] args){
      System.out.println("Hello World !");
    }

}

/* take care of the name of the file being the same as the one of the class
 * take care of the parameter of the 'main' method
 */
