Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
String myVar = "Hallo"; // String mit Inhalt
2
String myVar2 = new String(); // leerer String
3
String myVar3 = ""; // auch ein leerer String
4
5