Concatenation Operator
The first string operator we'll look at is the concatenation operator (_). It's simple; you use it to combine multiple strings into a single string.
SAMPLES>set a = "license", b = "to", c = "speed", d = " ", e = "!"
SAMPLES>set s=a _ d _ b _ d _ c _ e
SAMPLES>write s
license to speed!
SAMPLES>