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

7 lines
113 B
Text

Sub copystring()
a = "Hello World!"
b = a
a = "I'm gone"
Debug.Print b
Debug.Print a
End Sub