Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
String myVar = "Hallo";
2
String myVar2 = "Welt";
3
4
// Verknuepfen von Strings
5
String result1 = myVar + " " + myVar2 ;
6
String result2 = myVar2 + "+" + myVar2 ;
7
8