2022-12-30 03:01:38 -05:00
|
|
|
# gt
|
2022-12-29 16:04:46 -05:00
|
|
|
|
|
|
|
Returns true if the first argument is greater than the second argument.
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-12-30 03:01:38 -05:00
|
|
|
* a (`integer`, `float`, `double`) - The first number.
|
|
|
|
* b (`integer`, `float`, `double`) - The second number.
|
2022-12-29 16:04:46 -05:00
|
|
|
|
|
|
|
## Return
|
|
|
|
|
|
|
|
(`boolean`) - True if the first argument is greater than the second argument.
|
|
|
|
|
|
|
|
## Exceptions
|
|
|
|
|
|
|
|
* `EvaluationException` - If there was an error while evaluating one or more parameters.
|
|
|
|
* `TypeException` - If one or more parameters are not of the expected type.
|
|
|
|
|
|
|
|
## Instruction Example
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2022-12-30 03:01:38 -05:00
|
|
|
"type": "gt",
|
2022-12-29 16:04:46 -05:00
|
|
|
"_": {
|
|
|
|
"a": 10,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Last Updated
|
|
|
|
|
2022-12-30 03:01:38 -05:00
|
|
|
Monday, December 30th, 2022.
|
2022-12-29 16:04:46 -05:00
|
|
|
Written by [Netkas](https://git.n64.cc/netkas)
|