5 lines
79 B
Text
5 lines
79 B
Text
a$ = "Hello world..."
|
|
LOCAL b TYPE STRING
|
|
b = a$
|
|
a$ = "Goodbye..."
|
|
PRINT a$, b
|