4 lines
85 B
Text
4 lines
85 B
Text
s$ = "hello"
|
|
print s$;" literal" 'or s$ + " literal"
|
|
s2$ = s$ + " literal"
|
|
print s2$
|