Jump to content

String append: Difference between revisions

Changed comments. Added output.
m (→‎{{header|Phix}}: added syntax colouring the hard way, phix/basics)
(Changed comments. Added output.)
Line 1,104:
=={{header|Nim}}==
<lang nim>var str = "123456"
str.add("78") # twoUsing waysprocedure "add".
str &= "9!" # toUsing operator append</lang>"&=".
echo str
</lang>
 
{{out}}
<pre>123456789!</pre>
 
=={{header|NS-HUBASIC}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.