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

5 lines
58 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
10 S$ = "HELLO"
20 S$ = S$ + " WORLD!"
30 PRINT S$
40 END