History |
+ (add) (math)
Purpose
Adds two numbers.
You can also use + to concatenate two strings, but we recommend & for concatenation.
Syntax
Number1 + Number2
Example
Sub Main()
Print "The sum of 10 and 4 is:", 10 + 4
End Sub
| ||