String concatenation: Difference between revisions

m (Added Sidef language)
Line 4:
 
To illustrate the operation, show the content of the variables.
 
=={{header|ABAP}}==
<lang ABAP>DATA: s1 TYPE string,
s2 TYPE string.
 
s1 = 'Hello'.
CONCATENATE s1 ' literal' INTO s2 RESPECTING BLANKS.
WRITE: / s1.
WRITE: / s2.
</lang>
{{out}}
<pre>
Hello
Hello literal
</pre>
 
=={{header|ActionScript}}==
Anonymous user