M
MeshWorld.
Program JAVA 1 min read

Write a Program to print Hello, World! in JAVA

Vishnu
By Vishnu

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!