RosettaCodeData/Task/String-append/Liberty-BASIC/string-append.basic

5 lines
55 B
Plaintext

a$ = "Hello"
a$ = a$ + " World"
a$ = a$ ; "!"
print a$