RosettaCodeData/Task/Copy-a-string/BaCon/copy-a-string-1.bacon

5 lines
60 B
Plaintext

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