Saturday 4 July 2015

Hello World

The 'Hello World' program is the first program in any programming language. The following[ program simply writes the string in double quotes (" "), on the output screen.


class HelloWorld
{
 public static void main(String[] args)
 {
System.out.print("Hello World! Welcome to Programming Infinitum.");
 }
}

No comments:

Post a Comment