RosettaCodeData/Task/Copy-a-string/ArkScript/copy-a-string.ark

8 lines
95 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
(mut str "hello world")
(mut copy str)
(set copy "clone destroyed")
(print str)
(print copy)