Test.java 152 字节
Newer Older
J
jackfrued 已提交
1 2 3 4 5 6 7
class Test {

    public static void main(String[] args) {
        JOptionPane.showMessageDialog(null, "Hello, world!");
        System.exit(0);
    }
}