RosettaCodeData/Task/String-concatenation/Applesoft-BASIC/string-concatenation.basic

6 lines
91 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
10 S$ = "HELLO"
20 PRINT S$ + " LITERAL"
30 PRINT S$
40 S2$ = S$ + " LITERAL"
50 PRINT S2$