RosettaCodeData/Task/Copy-a-string/Rye/copy-a-string.rye

9 lines
144 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
str:: "Hello"
;Returns [String: Hello]
str2:: str
;Returns [String: Hello]
str:: "World"
;Returns [String: World]
str2
;Returns [String: Hello]