Skip to main content

Command Palette

Search for a command to run...

Hello World!

Updated
0 min readView as Markdown

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);
    }
}
68 views