RosettaCodeData/Task/Copy-a-string/NS-HUBASIC/copy-a-string.basic

5 lines
56 B
Plaintext

10 A$ = "HELLO"
20 B$ = A$
30 A$ = "HI"
40 PRINT A$, B$