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

5 lines
54 B
Plaintext

LET a$ = "Hello"
LET a$ = a$ & " World!"
PRINT a$
END