Hello World!

Click to expand...

import static java.lang.System.out;

public class Hello {
    public static void main(String... args) {
        var msg = "Hello World!";
        out.println(msg);
    }
}