* (Multiplication)
Syntax
argument1 * argument2
Description
The multiplication operator is used to multiply two numbers.and is the inverse of division, /. The arguments argument1 and argument2 can be any valid numerical expression.
Example
n = 4 * 5
PRINT n
SLEEP
The output would look like:
20
Differences from other BASICs
- None