Merge pull request #229 from Ruchika8/Updated_code

Updated code with Java example
This commit is contained in:
Josh Cunningham 2018-10-09 08:45:11 -07:00 committed by GitHub
commit 8e4c57b5f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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!");
}
}