CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
jackfrued

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/番外篇/code/Test.java
Views: 729
1
class Test {
2
3
public static void main(String[] args) {
4
JOptionPane.showMessageDialog(null, "Hello, world!");
5
System.exit(0);
6
}
7
}
8