String append: Difference between revisions

m
add RPL
(add RPL)
m (add RPL)
Line 1,581:
 
=={{header|RPL}}==
In HP-48+ RPL versions, the <code>STO+</code> instruction can append a string to any end of a variable containing already a string.
"def" '<span style="color:green">Z</span>' STO
"abc" '<span style="color:green">Z</span>' STO+
'<span style="color:green">Z</span>' "ghi" STO+
<span style="color:green">Z</span>
'''Output'''
<span style="color:grey"> 1:</span> "abcdefghidefghi"
 
=={{header|Ruby}}==
1,150

edits