mul( <var>, <num1>, <num2> )

Description

This will set the specified var to the result of num1 multiplied by num2.

Example

A = B × 2 (result will be an integer):
mul(A, B, 2)
R = T × Z (result will be a float):
mul(R, T, Z)