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

6 lines
92 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
%string = "Hello";
echo(%string);
%other = " world!";
echo(%other);
echo(%string @ %other);