RosettaCodeData/Task/String-concatenation/TorqueScript/string-concatenation.torque

6 lines
92 B
Plaintext

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