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

4 lines
107 B
Text

src$ = "Hello" ' is the original string
dst$ = src$ ' is the copy
src$ = " world..."
PRINT dst$; src$