6 lines
66 B
Text
6 lines
66 B
Text
|
|
s1 = "hello"
|
||
|
|
println s1 + " world"
|
||
|
|
|
||
|
|
s2 = s1 + " world"
|
||
|
|
println s2
|