<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** 
 * The HelloWorldApp class implements an application that
 * simply displays "Hello World!" to the standard output.
 */
public class HelloWorldApp {
    public static void main(String[] args) {
	System.out.println("Hello World!");
    }
}
</pre></body></html>