RosettaCodeData/Task/String-append/Asymptote/string-append.asymptote

5 lines
58 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
string s = "Hello";
s = s + " Wo";
s += "rld!";
write(s);