Below we demonstrate Java programming through a simple example. This example outputs "Hello World". This is also the first example program for getting started with any language:
public class Main{
public static void main(String []args) {
System.out.println("Hello World");
}
}