RosettaCodeData/Task/Copy-a-string/SNOBOL4/copy-a-string.sno
2023-07-01 13:44:08 -04:00

8 lines
146 B
Text

* copy a to b
b = a = "test"
output = a
output = b
* change the copy
b "t" = "T"
output = b
end