4 lines
89 B
Text
4 lines
89 B
Text
S$ = "HELLO"
|
|
PRINT S$;" LITERAL" :REM OR S$ + " LITERAL"
|
|
S2$ = S$ + " LITERAL"
|
|
PRINT S2$
|