Skip to main content

Hello World

Java | Hello World: Most well know beginning word "Hello World" for any programming language. 


Here is the Code:

  1. import java.io.*;
  2. class HelloWorld {
  3. public static void main (String[] args) {
  4. System.out.println("Hello World");
  5. }
  6. }
     
Output: Hello World.

Here is the Video: