ec_mod — calculate the modulus of two numbers
ec_mod { number1 } { number2 }
ec_mod
number1
number2
ec_mod calculates the modulus of two numbers and returns the result.
$a = 87; $b = 43; $mod = ec_mod $a $b; ec_log "${a} mod by ${b} is ${mod}"; #mod is 1