M
MeshWorld.
Program JAVA 1 min read

Write a Program to print Hello, World! in JAVA

Vishnu Damwala
By Vishnu Damwala

A program to print “Hello, World!” in JAVA

Working example

/*
 * FileName : "HelloWorld.java".
 */
class HelloWorld
{
  // Program execution begins with main() method
  public static void main(String args[])
  {
    System.out.println("Hello, World!");
  }
}

Output

 Hello, World!