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
- public class TestClass
- {
- // main method
- public static void main(String []args)
- {
- // print statement
- System.out.println("Hello World is my first Java Program.");
- }
- }

Comments
Post a Comment