5 lines
63 B
Text
5 lines
63 B
Text
|
|
s1='Hello'
|
||
|
|
print, s1 + ' literal'
|
||
|
|
s2=s1 + ' literal'
|
||
|
|
print, s2
|