Name
Mul -- multiply two values
Synopsis
result = Mul(value1, value2)
Function
Multiplies value1 by value2 and returns the result.

Inputs
value1
source value
value2
multiplier
Results
result
result of multiplication
Example
a=5
a=Mul(a,5)
Print(a)
This will print "25" to the screen.

Show TOC