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

5 lines
60 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a$ = "I am here"
b$ = a$
a$ = "Hello world..."
PRINT a$, b$