RosettaCodeData/Task/String-concatenation/S-BASIC/string-concatenation.basic

12 lines
143 B
Plaintext

rem - the + operator is used to concatenate strings
var s1, s2 = string
s1 = "Hello"
print s1 + ", world"
s2 = s1 + ", world"
print s2
end