RosettaCodeData/Task/String-prepend/XPL0/string-prepend.xpl0
2023-07-01 13:44:08 -04:00

6 lines
97 B
Text

include xpllib;
char S, T(80);
[S:= "world!";
S:= StrCat(StrCopy(T,"Hello, "), S);
Text(0, S);
]