This is an hello world done in Java. Every beginner does it at some stage. It is the most simplest program that can be written. The program prints out Hello World in your IDE editor output window.
public class HelloWorld{ public void static main(String[] args) { System.out.println("Hello World"); }}