$ceil
$ceil
rounds the number UP to the nearest integer.
Usage
$ceil[number]
Parameters
Field | Type | Description | Required |
---|---|---|---|
number | number | The number that will be rounded up. | true |
Example(s)
This will round 1.1
up to 2
:
1client.command({2 name: "ceil",3 code: `$ceil[1.1]`4});