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

5 lines
92 B
Text

%string = "Hello";
echo(%string);
%other = " world!";
echo(%other);
echo(%string @ %other);