- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.java
More file actions
Latest commit
18 lines (12 loc) · 419 Bytes
/
Copy pathHelloWorld.java
File metadata and controls
18 lines (12 loc) · 419 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
packagecom.sarvesh.javabasics;
publicclassHelloWorld {
/*
* Some point which must consider before writing java code
* class name must be in upper case and also the filename must be same
* methods are in camel case
* and constants are in whole capital separated with underscore.*/
publicstaticvoidmain(String[] args) {
// Hello World Print Statement
System.out.println("Hello World !!!");
}
}