Adds two numeric expressions together. Concatenates strings together.
Syntax
expression + expression
Notes
If one or both of the expressions result in a non numeric values then
the values are concatendated.
If both of the expressions result in numeric values then the values
are added.
Example
name = firstName + " " + lastName
physicalOffset = baseOffset + offset
|