Pages

Hello World




Write a Program to Print Hello world?

Source code of the program:


class HelloWorld
{
public static void main(String args[])
       {
       System.out.println("Hello World");
       }
}

Output of the Program: