RosettaCodeData/Task/String-append/BBC-BASIC/string-append.basic
2023-07-01 11:58:00 -04:00

4 lines
62 B
Text

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