Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jackfrued
GitHub Repository: jackfrued/python-100-days
Path: blob/master/番外篇/code/Test.java
2372 views
1
class Test {
2
3
public static void main(String[] args) {
4
JOptionPane.showMessageDialog(null, "Hello, world!");
5
System.exit(0);
6
}
7
}
8