From c61ead3154dfbb3b256885789b53b99dc88f4b23 Mon Sep 17 00:00:00 2001 From: Vikram Sethi Date: Sun, 14 Nov 2021 14:49:46 -0600 Subject: [PATCH 1/2] Initial Commit --- Java/HelloWorld.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Java/HelloWorld.java diff --git a/Java/HelloWorld.java b/Java/HelloWorld.java new file mode 100644 index 0000000..162f2ae --- /dev/null +++ b/Java/HelloWorld.java @@ -0,0 +1,7 @@ + + +public class HelloWorld{ + + public static void main(String[] args){ + System.out.println("Hello World"); + } \ No newline at end of file From 9803ad9ee13acb78196062ad658a746c3a39f026 Mon Sep 17 00:00:00 2001 From: Vikram Sethi <50968837+VikramS23@users.noreply.github.com> Date: Sun, 14 Nov 2021 15:36:45 -0600 Subject: [PATCH 2/2] Update HelloWorld.java Add extra closing brace for class --- Java/HelloWorld.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Java/HelloWorld.java b/Java/HelloWorld.java index 162f2ae..33de185 100644 --- a/Java/HelloWorld.java +++ b/Java/HelloWorld.java @@ -4,4 +4,5 @@ public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World"); - } \ No newline at end of file + } +}