divide

From RPTools Wiki
Revision as of 17:35, 14 March 2023 by Taustin (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")
Jump to navigation Jump to search

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

<syntaxhighlight lang="mtmacro" line> [h: props = divide(num, num, ...)] </source>

Examples

<syntaxhighlight lang="mtmacro" line>

[r: divide(4, 2)] </source> Returns 2.

<syntaxhighlight lang="mtmacro" line> [r: divide(24, 2, 2)] </source>

Returns 6.