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

5 lines
60 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
str := "Hello":
newstr := cat(str,", world!"):
str;
newstr;