5 lines
241 B
Text
5 lines
241 B
Text
string this = "feed"
|
|
string that = this -- (that becomes "feed", this remains "feed")
|
|
that[2..3] = "oo" -- (that becomes "food", this remains "feed")
|
|
this[1] = 'n' -- (that remains "food", this becomes "need")
|
|
?{this,that}
|