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

5 lines
51 B
Plaintext

src$ = "Hello"
dest$ = src$
print src$
print dest$