RosettaCodeData/Task/String-concatenation/Maple/string-concatenation.maple
2023-07-01 13:44:08 -04:00

4 lines
60 B
Text

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