String concatenation: Difference between revisions

Added Tailspin solution
No edit summary
(Added Tailspin solution)
Line 1,789:
<pre>
The quick brown fox jumped over the lazy moon.
</pre>
 
=={{header|Tailspin}}==
Tailspin has no operator for concatenating strings, you simply use interpolation instead
<lang tailspin>
def a: 'Hello';
'$a;, World!' -> !OUT::write
</lang>
{{out}}
<pre>
Hello, World!
</pre>
 
Anonymous user