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

6 lines
92 B
Text
Raw Permalink Normal View History

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