TESTCLASS.JAVA

 

The program Creation       

The Java program can be written using a Text Editor (Notepad++ or NotePad or other editors will also do the job.) or IDE (Eclipse, NetBeans, etc.).

FileName: TestClass.java

  1. public class TestClass  
  2. {  
  3. // main method  
  4. public static void main(String []args)  
  5. {  
  6. // print statement  
  7. System.out.println("Hello World is my first Java Program.");  
  8. }  
  9. }  

Comments