From fa6e45a2dd6a0b17e37f943c9342df74ecd4330f Mon Sep 17 00:00:00 2001 From: Ruchika Salwan Date: Sun, 7 Oct 2018 15:37:59 +0530 Subject: [PATCH] Initial commit with Hello World in Java --- code/HelloWorld.java | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/HelloWorld.java diff --git a/code/HelloWorld.java b/code/HelloWorld.java new file mode 100644 index 0000000..4f0cd0f --- /dev/null +++ b/code/HelloWorld.java @@ -0,0 +1,6 @@ +public class HelloWorld{ + + public static void main(String[] args){ + System.out.println("Hello World from India!"); + } +} \ No newline at end of file