Hello World in Java!

This post explains how to write a 'Hello world' program in Java programming language.

Why do we start with Hello world program always?

You may say this is a tradition now before starting learning any language.

Photo by Maximilian Weisbecker / Unsplash

Let's jump directly into the code without any further delay.

Class Hello{
	public static void main(String[] args) {
    	System.out.println("Hello world");
    }
}
Hello world in Java.


Well, that was it !! Simple, right?

Don't forget to subscribe for further posts and do comment and let us know how you felt about the post !!!