String append: Difference between revisions

Content added Content deleted
(Added Delphi example)
(Added 11l)
Line 15: Line 15:
Show the contents of the variable after the append operation.
Show the contents of the variable after the append operation.
<br><br>
<br><br>
=={{header|11l}}==
{{trans|Python}}

<lang 11l>V s = ‘12345678’
s ‘’= ‘9!’
print(s)</lang>

{{out}}
<pre>
123456789!
</pre>

=={{header|AArch64 Assembly}}==
=={{header|AArch64 Assembly}}==
{{works with|as|Raspberry Pi 3B version Buster 64 bits}}
{{works with|as|Raspberry Pi 3B version Buster 64 bits}}
Line 112: Line 124:
Alphabet : abcdefghijklmnopqrstuvwxyz
Alphabet : abcdefghijklmnopqrstuvwxyz
</pre>
</pre>

=={{header|Ada}}==
=={{header|Ada}}==
<lang ada>
<lang ada>