gt: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (added logical category)
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 7: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
gt(n1, n2, ...)
gt(n1, n2, ...)
</source>
</syntaxhighlight>
'''Parameters'''
'''Parameters'''
{{param|n1|Number}}
{{param|n1|Number}}
Line 15: Line 15:


|example=
|example=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: gt(2,1)]
[r: gt(2,1)]
[r: gt(2,1,0)]
[r: gt(2,1,0)]
[r: gt(2,1,1)]
[r: gt(2,1,1)]
</source>
</syntaxhighlight>
'''Returns:'''
'''Returns:'''
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
1
1
1
1
0
0
</source>
</syntaxhighlight>


|also=
|also=

Latest revision as of 16:00, 15 March 2023

gt() Function

This function compares provided numeric values and returns true(1) if the first is greater than the second and the second greater than the third and so no. If any comparison fails, the function returns false.

Usage

gt(n1, n2, ...)

Parameters

  • n1 - Number
  • n2+ - Number

Example

[r: gt(2,1)]
[r: gt(2,1,0)]
[r: gt(2,1,1)]

Returns:

1
1
0

See Also