RosettaCodeData/Task/String-concatenation/Maple/string-concatenation.maple
2014-04-02 16:56:35 +00:00

4 lines
60 B
Text

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