The multiplication operator (*) yields the result of multiplying the left operand by the right operand.
Expression * Expression
> PRINT 3 * 4
12
> PRINT 3 * 4.4
13.200000
> PRINT TRUE * FALSE
0