Java | Hello World: Most well know beginning word "Hello World" for any programming language. 
Here is the Code:
- import java.io.*;
 - class HelloWorld {
 - public static void main (String[] args) {
 - System.out.println("Hello World");
 - }
 - }
 
Output: Hello World.
Here is the Video:
Comments
Post a Comment