4 lines
107 B
Text
4 lines
107 B
Text
src$ = "Hello" ' is the original string
|
|
dst$ = src$ ' is the copy
|
|
src$ = " world..."
|
|
PRINT dst$; src$
|