5 lines
110 B
Text
5 lines
110 B
Text
s = "Hello ";
|
|
s = Str(s, "world");
|
|
\\ Alternately, this could have been:
|
|
\\ s = concat(s, "world");
|
|
print(s);
|