Contents
Display Legacy Contents

 Print
    Plus      
This operator is used in <numeric> and <string> expressions. Use it to add one value from another.

Symbol: +


     
Assuming that we are in a <string> expression.
 
Example 1
  Example 2
"Kal" + "ipso"

Result = Kalipso
  "Kalipso " + "#" + "1"

Result = Kalipso #1
     
Assuming that we are in a <numeric> expression.
 
Example 3   Example 4
1 + 2

Result = 3
  "Kalipso" + 1 + 2

Result = 3


See also
Samples
Sample 1
Sample 2
 
Updated: 3/25/2013 11:50 AM