RosettaCodeData/Task/String-concatenation/TorqueScript/string-concatenation.torque
2013-04-11 11:14:19 -07:00

5 lines
92 B
Text

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