Hello World Java

Hello World Java

The basic object-oriented underpinning of Java has been discussed, let’s look at some actual Java programs. Let’s start by compiling and running the short sample program shown here.

The requirement for run Java Program

class Example { // Your program begins with a call to main().   
        public static void main(String args[]) {
                System.out.println("Hello World Java");
        }
}

Output

Hello World Java