5 lines
58 B
Text
5 lines
58 B
Text
|
|
string s = "Hello";
|
||
|
|
s = s + " Wo";
|
||
|
|
s += "rld!";
|
||
|
|
write(s);
|