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.
Let's jump directly into the code without any further delay.
Class Hello{
public static void main(String[] args) {
System.out.println("Hello world");
}
}
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 !!!