Hello World






  • Class name should start with Capital letter. 
  • Example-


The HelloWorld class in Java should be like below.


public class HelloWorld {
 
 public static void main(String[] args) {
  
  System.out.println("Hello, World !");
 }

}


In the Eclipse IDE it should look like this. 




When you run this program, it will give the result as below.




So here you complete the first Java Program, i.e HelloWorld. 

Post a Comment

0 Comments