Skip to main content

Name

ec_mul — perform multiplication of two numbers

Synopsis

ec_mul { number1 } { number2 }

Description

ec_mul takes two numbers and returns the result of multiplication.

$a = 55;
$b = 43;
$mul = ec_mul $a $b;
ec_log "${a} * ${b} is ${mul}";
#mul is 2365.000000
Was this page helpful?