All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.pdx.cs410J.lang.Hello Maven / Gradle / Ivy

The newest version!
package edu.pdx.cs410J.lang;

/**
 * This class simply prints "Hello World".
 *
 * @author David Whitlock
 */
public class Hello {
  
  /**
   * This method is where the JVM starts executing.
   *
   * @param args
   *        Command line arguments from console
   */
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy