From b3e5002f0f2d0b5b6fafc6a67a8ff8627daa2bbd Mon Sep 17 00:00:00 2001 From: Yash <51225584+yashgandhi2020@users.noreply.github.com> Date: Wed, 2 Oct 2019 20:33:55 +0530 Subject: [PATCH] HelloWorld --- Java/HelloWorld.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Java/HelloWorld.java b/Java/HelloWorld.java index 672043a..459e454 100644 --- a/Java/HelloWorld.java +++ b/Java/HelloWorld.java @@ -1,6 +1,7 @@ -public class HelloWorld{ - public static void main(String[] args){ - System.out.println("Hello World"); +class HelloWorld +{ + public static void main(String args[]) + { + System.out.println("HelloWorld"); } } -