/** * The HelloWorldApp class implements an application that simply prints "Hello World" to standard output. */ public class HelloWorld { public static void main(String[] args) { Updated on 3/04/2019 at 9:10 pm, 9:13pm/ 9:27pm System.out.println("Hello, World"); } }