8 lines
95 B
Text
8 lines
95 B
Text
|
|
(mut str "hello world")
|
||
|
|
(mut copy str)
|
||
|
|
|
||
|
|
(set copy "clone destroyed")
|
||
|
|
|
||
|
|
(print str)
|
||
|
|
(print copy)
|