The following math functions operate on int64 values.
Sum numbers with add. Accepts two or more inputs.
add 1 2 3
To increment by 1, use add1
To subtract, use sub
Perform integer division with div
Perform modulo with mod. The result is the remainder of dividing the first
argument by the second.
mod 10 3
The above will return 1, because 10 % 3 = 1.
Multiply with mul. Accepts two or more inputs.
mul 1 2 3
Return the largest of a series of integers:
This will return 3:
max 1 2 3
Return the smallest of a series of integers.
min 1 2 3 will return 1
Returns the greatest float value less than or equal to input value
floor 123.9999 will return 123.0
Returns the greatest float value greater than or equal to input value
ceil 123.001 will return 124.0
Returns a float value with the remainder rounded to the given number to digits after the decimal point.
round 123.555555 3 will return 123.556
Returns a random integer value from min (inclusive) to max (exclusive).
randInt 12 30
The above will produce a random number in the range [12,30].