Copy a string: Difference between revisions

Content added Content deleted
(add lambdatalk)
(add RPL)
Line 2,306: Line 2,306:
</syntaxhighlight>
</syntaxhighlight>


=={{header|RPL}}==
Copy a string in stack:
DUP
Copy a string from one variable to another:
"Example" 'STR1' STO
STR1 'STR2' STO
=={{header|Ruby}}==
=={{header|Ruby}}==
In Ruby, String are mutable.
In Ruby, String are mutable.