RPTools

Personal tools
From MapToolDoc

divide

divide() Function

Divides the first number by the second number, and then divides that result by the third number --if present-- and so on for all the numbers passed to the function.

Usage

  1. [h: props = divide(num, num, ...)]

Examples

  1. [r: divide(4, 2)]

Returns 2.

  1. [r: divide(24, 2, 2)]

Returns 6.