RosettaCodeData/Task/String-concatenation/S-BASIC/string-concatenation.basic
2023-07-01 13:44:08 -04:00

11 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