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

5 lines
54 B
Plaintext

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