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

12 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
rem - the + operator is used to concatenate strings
var s1, s2 = string
s1 = "Hello"
print s1 + ", world"
s2 = s1 + ", world"
print s2
end