# If command
The If commmand is used check a boolean expression.

```
if(1 == 1){
    log("1 = 1");
};
```