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

5 lines
62 B
Plaintext

S$="Hello"
S$+=" World!"
PRINT S$
END