RosettaCodeData/Task/String-append/BBC-BASIC/string-append.basic
2023-07-01 13:44:08 -04:00

4 lines
62 B
Text

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