+ (Addition)
Syntax
argument1 + argument2
Description
The addition operator is used to find the sum of two numbers. Addition, +, is the inverse of subtraction, -. The arguments argument1 and argument2 can be any valid numerical expression.
Example
n = 454 + 546
PRINT n
SLEEP
The output would look like:
1000
Differences from other BASICs
- None