RosettaCodeData/Task/String-concatenation/Maple/string-concatenation.maple

5 lines
60 B
Plaintext

str := "Hello":
newstr := cat(str,", world!"):
str;
newstr;