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

5 lines
60 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
a$ = "I am here"
b$ = a$
a$ = "Hello world..."
PRINT a$, b$