5 lines
76 B
Text
5 lines
76 B
Text
s$ = "hello"
|
|
print s$ + " literal"
|
|
s2$ = s$ + " literal"
|
|
print s$
|
|
print s2$
|