The addition operator (+) returns the sum of both operands.
If both operands are strings, the two strings are merged into one.
Expression + Expression
> PRINT 1 + 2
3
> PRINT 3 + 4.0
7.000000
> PRINT TRUE + FALSE
1
> PRINT "HELLO" + " " + "WORLD"
HELLO WORLD