All BASIC commands Section 4-2
84
4-2 All BASIC commands
4-2-1 + (Addition)
/i
4-2-2 - (Subtraction)
/i
4-2-3 * (Multiplication)
/i
Type Mathematical function
Syntax expression1 + expression2
Description The operator + adds two expressions.
Arguments • expression1
Any valid BASIC expression.
• expression2
Any valid BASIC expression.
Example result = 4 + 3
Assigns the value 7 to the variable result.
See also N/A
Type Mathematical function
Syntax expression1 - expression2
Description The operator - subtracts expression2 from expression1.
Arguments • expression1
Any valid BASIC expression.
• expression2
Any valid BASIC expression.
Example result = 10 - 2
Assigns the value 8 to the variable result.
See also N/A
Type Mathematical function
Syntax expression1 * expression2
Description The operator * multiplies two expressions.
Arguments • expression1
Any valid BASIC expression.
• expression2
Any valid BASIC expression.
Example result = 3 * 7
Assigns the value 21 to the variable result.
See also N/A