Page not found

Sorry, but we could not find the page that you are looking for. Go to the homepage

In the meantime, this is how you write a Hello World for Java:

package demo;

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