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

5 lines
91 B
Text

10 S$ = "HELLO"
20 PRINT S$ + " LITERAL"
30 PRINT S$
40 S2$ = S$ + " LITERAL"
50 PRINT S2$