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