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 + +}