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

5 lines
89 B
Text
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
S$ = "HELLO"
PRINT S$;" LITERAL" :REM OR S$ + " LITERAL"
S2$ = S$ + " LITERAL"
PRINT S2$