package demo;

/**
 * The traditional first program.
 *
 * @author Brian Kernighan
 * @version 05/23/1995
 */
public class HelloWorld {

  /**
   * Output hello world on the screen.
   *
   * @param args command-line arguments
   */
  public static void main(String[] args) {
    System.out.println("Hello, World!");
  }

}
