Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
public class World {
2
public static void main(String[] args) {
3
String a = new String("Lorem ipsum");
4
System.out.println(a);
5
}
6
}
7
8