String concatenation: Difference between revisions

no edit summary
m (split the list of categories.)
No edit summary
Line 1,775:
let s1 = s + " literal"
println(s1)</lang>
 
=={{header|Symsyn}}==
<lang Symsyn>
| concatenate a string
 
'The quick brown fox ' $s
+ 'jumped over the lazy moon.' $s
$s []
 
</lang>
 
{{out}}
<pre>
The quick brown fox jumped over the lazy moon.
</pre>
 
=={{header|Tcl}}==
Anonymous user