python/番外篇/code/Test.java
2024-12-04 00:04:56 +08:00

7 lines
152 B
Java

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