Initial commit with Hello World in Java

This commit is contained in:
Ruchika Salwan 2018-10-07 15:37:59 +05:30
parent f60a04b8ee
commit fa6e45a2dd
1 changed files with 6 additions and 0 deletions

6
code/HelloWorld.java Normal file
View File

@ -0,0 +1,6 @@
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World from India!");
}
}