String concatenation: Difference between revisions

Content added Content deleted
(Corrected BASIC and AppleSoft BASIC - Semicolons are not concatenation operators, they suppress newlines and work only on PRINT statements.)
(Added 11l)
Line 15: Line 15:
{{Template:Strings}}
{{Template:Strings}}
<br><br>
<br><br>

=={{header|11l}}==
{{trans|Python}}

<lang 11l>V s1 = ‘hello’
print(s1‘ world’)
V s2 = s1‘ world’
print(s2)</lang>

{{out}}
<pre>
hello world
hello world
</pre>


=={{header|AArch64 Assembly}}==
=={{header|AArch64 Assembly}}==
Line 88: Line 102:
Hello the world.
Hello the world.
</pre>
</pre>

=={{header|ABAP}}==
=={{header|ABAP}}==
<lang ABAP>DATA: s1 TYPE string,
<lang ABAP>DATA: s1 TYPE string,