Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
public class String {
2
3
java.lang.String content;
4
5
public String(java.lang.String content) {
6
this.content = content;
7
}
8
}
9
10