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
+6
View File
@@ -0,0 +1,6 @@
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World from India!");
}
}