String concatenation: Difference between revisions

Content added Content deleted
m (split the list of categories.)
No edit summary
Line 1,775: Line 1,775:
let s1 = s + " literal"
let s1 = s + " literal"
println(s1)</lang>
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}}==
=={{header|Tcl}}==