From c83056daa2bcc57be723a7a7c83dc83edb269f19 Mon Sep 17 00:00:00 2001 From: Pareshvarke Date: Wed, 20 Aug 2014 15:36:58 +0530 Subject: [PATCH] Update HelloWorld.java --- HelloWorld.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/HelloWorld.java b/HelloWorld.java index 63eb2cb..55839e6 100644 --- a/HelloWorld.java +++ b/HelloWorld.java @@ -33,7 +33,11 @@ * The HelloWorldApp class implements an application that simply prints "Hello World" to standard output. */ public class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello, World"); + } -} \ No newline at end of file + +}