12 lines
143 B
Text
12 lines
143 B
Text
|
|
rem - the + operator is used to concatenate strings
|
||
|
|
|
||
|
|
var s1, s2 = string
|
||
|
|
|
||
|
|
s1 = "Hello"
|
||
|
|
print s1 + ", world"
|
||
|
|
|
||
|
|
s2 = s1 + ", world"
|
||
|
|
print s2
|
||
|
|
|
||
|
|
end
|