- 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 !");
}
}
When you run this program, it will give the result as below.
So here you complete the first Java Program, i.e HelloWorld.


0 Comments