python/番外篇/code/Test.java

7 lines
152 B
Java
Raw Normal View History

2024-12-04 00:04:56 +08:00
class Test {
public static void main(String[] args) {
JOptionPane.showMessageDialog(null, "Hello, world!");
System.exit(0);
}
}