# $math

### Usage

```php
$math[expression]
```

This function has one param.

| Param      | Description                   | Type   | Required |
| ---------- | ----------------------------- | ------ | -------- |
| expression | The math expression to solve. | String | Yes      |

**Math Symbols:**

* `+` - Addition.
* `-` - Subtraction.
* `/` - Division.
* `*` - Multiplication.
* `()` - Parentheses you can put equations in (changes order of operations).

### Examples

**Addition**

```javascript
bot.commands.add({
    type: "example",
    name: "example",
    code: `$math[1+1]` //Returns 1
})
```

**Subtraction**

```javascript
bot.commands.add({
    type: "basicCommand",
    name: "example",
    code: `$math[10-5]` //Returns 5
})
```

**Multiplication**

```javascript
bot.commands.add({
    type: "basicCommand",
    name: "example",
    code: `$math[2*2]` //Returns 4
})
```

**Division**

```javascript
bot.commands.add({
    type: "basicCommand",
    name: "example",
    code: `$math[32/4]` //Returns 8
})
```

**Mixing Operations**

```javascript
bot.commands.add({
    type: "basicCommand",
    name: "example",
    code: `$math[5-((30/2)*2)+10]` //Returns -15
})
```
