RosettaCodeData/Task/Copy-a-string/BASIC/copy-a-string-4.basic

5 lines
60 B
Plaintext

a$ = "I am here"
b$ = a$
a$ = "Hello world..."
PRINT a$, b$