Hello world in Java - Coders PlayGround

Learn to code and change the future!

Saturday, 19 August 2017

Hello world in Java


Hello Friends,
This is a program to print a simple message:

Remember: The file name should be same as the class Name.

In this case, the file name will be First.java

class First
{
    public static void main(String args[ ])
    {
        System.out.println("hello World");
    }
}
OUTPUT
hello World
PropellerAds