RosettaCodeData/Task/Copy-a-string/REXX/copy-a-string.rexx

17 lines
212 B
Rexx
Raw Permalink Normal View History

2026-02-01 16:33:20 -08:00
-- 8 Nov 2025
include Setting
say 'COPY A STRING'
say version
say
say 'Just assign the string variable to a new one.'
a='This is a string.'
b=a
say a b
c="This is also a string."
d=c
say d c
exit
include Abend