String append: Difference between revisions

Content added Content deleted
Line 291: Line 291:
{{out}}
{{out}}
<pre>Hello, World!</pre>
<pre>Hello, World!</pre>

=={{header|LiveCode}}==
Livecode has two main ways, appending by use of "&" ot "&&" if a space is required and using the "merge" function (interpolation).
<lang LiveCode> local str="live"
put live & "code"
put merge("[[str]]code")</lang>
Output for both is "livecode"


=={{header|Mathematica}}==
=={{header|Mathematica}}==