
// This is the hello world program
public class HelloWorld {
  // This is the main method
  public static void main(String[] args) {
    // This print out Hello World!
    System.out.println("Hello World!");
  }
}
